Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
322916 沈心 【C1-8】成绩等级 C++ 通过 100 1 MS 248 KB 295 2025-05-17 14:33:54

Tests(15/15):


#include<iostream> using namespace std; int main(){ int M; cin>>M; if (M>=90 && M<=100){ cout<<"A"; } else if (M>=80 && M<=90){ cout<<"B"; } else if (M>=70 && M<=80){ cout<<"C"; } else if (M>=60 && M<=70){ cout<<"D"; } else{ cout<<"E"; } return 0; }


测评信息: