| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144938 | c13 | 09输出成绩等级 | C++ | Wrong Answer | 0 MS | 268 KB | 276 | 2026-01-24 19:43:20 |
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a>90)cout<<'A'<<endl; else if(a>=80&&a<90)cout<<'B'<<endl; else if(a>=70&&a<80)cout<<'C'<<endl; else if(a>=60&&a<70)cout<<'D'<<endl; else cout<<'E'<<endl; return 0; }
------Input------
90
------Answer-----
A
------Your output-----
E