| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 148396 | Kevin | 输出成绩等级II | C++ | Accepted | 0 MS | 280 KB | 203 | 2026-02-13 05:36:13 |
#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; if(n>=90) cout<<"A"; else if(n>=70&&n<90) cout<<"B"; else if(n>=60&&n<70) cout<<"C"; else cout<<"D"; return 0; }