打表学神崛起瞬间

魈凯KBS  •  5个月前


include<bits/stdc++.h>

using namespace std;

int main(){

float x;

cin>>x;

if(x>=90) cout<<"A";

else if(x>=80) cout<<"B";

else if(x>=70) cout<<"C";

else if(x>=60) cout<<"D";

else if(x<=60) cout<<"E";

return 0;

}


评论: