Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
6046 张昊然 【基础题】成绩 C++ Accepted 1 MS 716 KB 199 2021-02-11 16:29:00

Tests(4/4):


Code:

#include <iostream> using namespace std; int main() { int n; cin >> n; if (n >= 60) { cout << "pass!"; } else { cout << "sorry!"; } return 0; }