Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
119091 | 汤奕硕 | C语言5.10 | C++ | Accepted | 0 MS | 268 KB | 410 | 2025-05-15 16:52:40 |
#include <iostream> using namespace std; int main() { int score; cin >> score; if (score >= 90) { cout << "A" << endl; } else if (score >= 80) { cout << "B" << endl; } else if (score >= 70) { cout << "C" << endl; } else if (score >= 60) { cout << "D" << endl; } else { cout << "E" << endl; } return 0; }