Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
323294 顾子丞 【C1-8】成绩等级 C++ 通过 100 2 MS 244 KB 274 2025-05-17 21:03:04

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; }


测评信息: