Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
89516 | 刘佳宇 | 07判断成绩 | C++ | Wrong Answer | 1 MS | 276 KB | 223 | 2024-08-25 14:20:40 |
#include<iostream> using namespace std; int main(){ int cj; cout<<"请输入你的期末成绩:"; cin>>cj; if(cj>=60){ cout<<"YES"; } if(cj<60){ cout<<"NO"; } }
------Input------
14
------Answer-----
NO
------Your output-----
请输入你的期末成绩:NO