Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
5499 | 谢锦卓 | 09输出成绩等级 | C++ | Wrong Answer | 0 MS | 268 KB | 418 | 2024-11-18 13:07:28 |
#include<iostream> // cin\cout\endl using namespace std; int main(){ int c; cin>>c; if(c>=90&&c<=100){ cout<<"A"<<endl; } else if(c>=80&&c<90){ cout<<"B"<<endl; } else if(c>=70&&c<80){ cout<<"C"<<endl; } else if(c>=60&&c<70){ cout<<"D"<<endl; } else if(c<60&&c>=0){ cout<<"E"<<endl; } return 0; }
------Input------
104
------Answer-----
A
------Your output-----