| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149523 | 8 | 输出成绩等级II | C++ | Accepted | 0 MS | 272 KB | 331 | 2026-03-13 20:34:03 |
#include <iostream> using namespace std; int main() { int score; cin >> score; if (score >= 90) { cout << "A" << endl; } else if (score >= 70) { cout << "B" << endl; } else if (score >= 60) { cout << "C" << endl; } else { cout << "D" << endl; } return 0; }