| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147348 | 赵奕杰 | 09输出成绩等级 | C++ | Wrong Answer | 0 MS | 272 KB | 275 | 2026-02-04 15:45:35 |
#include<bits/stdc++.h> using namespace std; int a; int main(){ cin>>a; if(a>=90&&a<100)cout<<"A"; else{ if(a<90&&a>=80)cout<<"B"; else{ if(70<=a&&a<80)cout<<"C"; else{ if(60<=a&&a<70)cout<<"D"; else cout<<"E"; } } } return 0; }
------Input------
104
------Answer-----
A
------Your output-----
E