#include <bits/stdc++.h>
using namespace std;
int mian() {int x; cin>>x; if (x>=90){ cout<<"A"; } else if (x<90 and x>=80){ cout<<"B"; } else if (x<80 and x>=70){ cout<<"C"; } else if (x<70 && x>=60){ cout<<"D"; } else if (x<60){ cout<<"E"; } return 0; }
共 1 条回复
主函数写错了,应该是 main