文章
37
粉丝
1
获赞
81
访问
7.2k
#include<iostream>
#include<cstdio>
#include<cmath>
#include<algorithm>
#include<string>
#include<cstring>
using namespace std;
int main()
{
int n;
cin >> n;
if (n >= 90)cout << 'A' << endl;
else if (n >= 80) cout << 'B' << endl;
else if (n >= 70) cout << 'C' << endl;
else if (n >= 60) cout << 'D' << endl;
else cout << 'E' << endl;
return 0;
}
登录后发布评论
暂无评论,来抢沙发