Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
10325 方泽润 C语言5.10 C++ Accepted 2 MS 732 KB 268 2021-04-27 18:10:25

Tests(1/1):


Code:

#include <iostream> using namespace std; int main() { int score; cin>>score; if (score<60) cout<<"E"; if (score>=60 && score<=69) cout<<"D"; if (score>=70 && score<=79) cout<<"C"; if (score>=80 && score<=90) cout<<"B"; if (score>=90) cout<<"A"; return 0; }