Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
136482 余建成 07判断成绩 C++ Accepted 1 MS 268 KB 184 2025-11-15 11:27:33

Tests(10/10):


Code:

#include<iostream> using namespace std; int main() { int c; cin>>c; if(c>=60) { cout<<"YES"; } if(c<60) { cout<<"NO"; } return 0; }