Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
18481 | 杨为哲 | C语言5.10 | C++ | Accepted | 1 MS | 728 KB | 277 | 2021-10-29 15:07:05 |
#include <bits/stdc++.h> using namespace std; int main() { int score; cin>>score; if(score>=90) cout<<"A"; if(score<90&&score>=80) cout<<"B"; if(score<80&&score>=70) cout<<"C"; if(score<70&&score>=60) cout<<"D"; if(score<60) cout<<"E"; return 0; }