we

我是大聪明  •  1个月前


include<bits/stdc++.h>

using namespace std; int main( ) {

long long int n,m;
cin>>n;
for(int i=0;i<n;i++)
{
	cin>>m;
	if(m>=90){
		cout<<"excellent"<<endl;
	}
		else	if(m>=80){
		cout<<"good"<<endl;
	}
		else	if(m>=60){
		cout<<"pass"<<endl;
	}
	else{
		cout<<"fighting"<<endl;
	}
}
return 0;

}


评论:

请先登录,才能进行评论