| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145511 | 徐毅然 | 输出成绩等级II | C++ | Accepted | 0 MS | 272 KB | 329 | 2026-01-25 15:50:28 |
#include <iostream> using namespace std; int main() { int n; cin >> n; if (n >= 90) { cout << "A" << endl; } else if (n >= 70) { cout << "B" << endl; } else if (n >= 60) { cout << "C" << endl; } else { cout << "D" << endl; } return 0; }