Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
317095 gongweimo 成绩等第 T1 C++ 通过 5 MS 696 KB 282 2026-04-18 12:11:55

Tests(10/10):


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


测评信息: