| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 46438 | 杨中琦 | 成绩等第 | C++ | Accepted | 100 | 0 MS | 256 KB | 212 | 2022-07-13 13:18:25 |
#include<bits/stdc++.h> using namespace std; int main(){ double score; cin>>score; if(score>=90) cout<<"A"; else if(score>=80) cout<<"B"; else if(score>=60) cout<<"C"; else cout<<"D"; return 0; }