Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
332664 | 李俞家骅 | 【C1-8】成绩等级 | C++ | 通过 | 100 | 3 MS | 244 KB | 250 | 2025-07-15 09:48:35 |
#include<bits/stdc++.h> using namespace std; int main(){ int m; cin>>m; if(90<=m&&m<=100)cout<<"A"; if(80<=m&&m<90)cout<<"B"; if(70<=m&&m<80)cout<<"C"; if(60<=m&&m<70)cout<<"D"; if(m<60)cout<<"E"; return 0; }