Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
13117 | 祝易涛 | C语言5.10 | C++ | Accepted | 2 MS | 720 KB | 277 | 2021-05-25 16:05:17 |
#include <bits/stdc++.h> using namespace std; int main() { int score=0; cin>>score; if(score>=90)cout<<"A"; else if(score>=80&&score<90)cout<<"B"; else if(score>=70&&score<80)cout<<"C"; else if(score>=60&&score<70)cout<<"D"; else cout<<"E"; return 0; }