Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
106135 | 李朋秦 | 09输出成绩等级 | C++ | Wrong Answer | 0 MS | 268 KB | 523 | 2025-01-15 14:25:25 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int score; cin>>score; if(score>=90){ cout<<'A'; }else if(80<=score<90){ cout<<'B'; }else if(70<=score<80){ cout<<'C'; }else if(60<=score<70){ cout<<'D'; }else{ cout<<'E'; } return 0; }
------Input------
60
------Answer-----
D
------Your output-----
B