Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
319764 Mr. Fang 成绩等第 T1 C++ 通过 6 MS 704 KB 301 2026-04-29 12:39:08

Tests(10/10):


#include <bits/stdc++.h> using namespace std; int main() { int a; cin >> a; if (a >= 90) { cout << "A" << endl; } else if (a >= 80) { cout << "B" << endl; } else if (a >= 70) { cout << "C" << endl; } else if (a >= 60) { cout << "D" << endl; } else { cout << "F" << endl; } return 0; }


测评信息: