哪错了

lhy276 2025-04-20 13:11:41 5

#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; }

{{ vote && vote.total.up }}

共 1 条回复

root 站长

主函数写错了,应该是 main