| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 139884 | 芦睿霖 | 09输出成绩等级 | C++ | Wrong Answer | 0 MS | 268 KB | 427 | 2025-12-10 20:26:08 |
#include <iostream> using namespace std; int main(){ int a; cin>>a; if( a>=90 ){ cout<<"A"; } else { cout<<" "; } if( 90>a>=80 ){ cout<<"B"; } else { cout<<" "; } if( 80>a>=70 ){ cout<<"C"; } else { cout<<" "; } if( 70>a>=60 ){ cout<<"D"; } else { cout<<" "; } if( a<60 ){ cout<<"E"; } else { cout<<" "; } return 0; }
------Input------
60
------Answer-----
D
------Your output-----