6
2023-10-15 10:47:48
发布于:湖南
15阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int t;
int main(){
cin>>t;
for(int i=1;i<=t;i++){
int n;
cin>>n;
if(n>=0&&n<60){
cout<<"fail"<<endl;
}else if(n>=60&&n<80){
cout<<"pass"<<endl;
}else if(n>=80&&n<=100){
cout<<"excellent"<<endl;
}else{
cout<<"wa"<<endl;
}
}
return 0;
}
这里空空如也
有帮助,赞一个