Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
121015 | 李茗宇 | 输出成绩等级II | C++ | Wrong Answer | 0 MS | 264 KB | 479 | 2025-06-04 18:33:29 |
#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() { long long a; cin>>a; if(a>=90){ cout<<"A"; } if(90>a>=70){ cout<<"B"; } if(70>a>=60){ cout<<"C"; } if(60>a){ cout<<"D"; } return 0; }
------Input------
80
------Answer-----
B
------Your output-----