Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
99168 | 王仲炜 | 07判断成绩 | C++ | Wrong Answer | 1 MS | 272 KB | 195 | 2024-11-24 14:31:03 |
#include<iostream> using namespace std; int main(){ int n; cin>>n; if(n>60) { cout<<"yes"; } else { cout<<"no"; } return 0; }
------Input------
14
------Answer-----
NO
------Your output-----
no