| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 122211 | 周泽洋 | 09输出成绩等级 | C++ | Wrong Answer | 1 MS | 272 KB | 348 | 2025-06-14 18:24:56 |
#include <iostream> #include <cstdio> #include <cmath> using namespace std; int main(){ int x; cin>>x; if (x>=90){ cout<<"A"; }else if(80<=x && x<=90){ cout<<"B"; }else if(70<=x && 80>x){ cout<<"c"; }else if(60<=x && 70>x){ cout<<"D"; }else{ cout<<"E"; } }
------Input------
70
------Answer-----
C
------Your output-----
c