Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
105095 陈奕涵 07判断成绩 C++ Accepted 1 MS 272 KB 220 2025-01-12 14:20:33

Tests(10/10):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() using namespace std; int main(){ int n=37; cin>>n; if(n>60) cout<<"YES"; if(n<60) cout<<"NO"; return 0; }