| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 24382 | 老方 | 成绩输出 | C++ | Accepted | 0 MS | 248 KB | 278 | 2023-08-11 15:09:02 |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; if(n>=90){ cout<<"优秀"; }else if(n>=80){ cout<<"良好"; } else if(n>=70){ cout<<"中等"; }else if (n>=60){ cout<<"及格"; } else{ cout<<"不及格"; } return 0; }