| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 139886 | 胡海峰老师 | 09输出成绩等级 | C++ | Accepted | 0 MS | 280 KB | 321 | 2025-12-11 14:23:25 |
#include <iostream> //designed by hu 2025-10 using namespace std; int main(){ int g; cin>>g; if( g>=90 ){ cout << "A"; } else if( g>=80 ){ cout << "B"; } else if( g>=70 ){ cout << "C"; } else if( g>=60 ){ cout << "D"; } else{ cout << "E"; } return 0; }