Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
89517 | 徐文杰 | 07判断成绩 | C++ | Wrong Answer | 1 MS | 272 KB | 212 | 2024-08-25 14:20:51 |
#include<iostream> using namespace std; int main(){ int cj; cin>>cj; if(cj>=60){ cout<<"及格"; } if(cj<60){ cout<<"不及格"; } }
------Input------
14
------Answer-----
NO
------Your output-----
不及格