计算平均分

lixinyan 爱因斯坦 2024-01-27 20:26:56 2024-01-27 20:27:36 0

#include《iostream》

using namespace std;

int main(){

int d;

double b=0,a[2500] ;
cout<<"请输入一个数n,这个数不能大于2000:(满分750)\n";
cin>>d;
	if(d>=2000){
	cout<<"你违反了规则\n";
	return 0;
}
cout<<"请输入n个整数:";
for(int e=1;e<=d;e++){
	cin>>a[e];
	if(a[e]>750){
		cout<<"对不起,你被封号了。";
		for(long long int i=1;i<=10;i++){
		cout<<"封号十年 封号十年\n";}
	} 
	b+=a[e];
}
b/=d;
cout<<"平均分是"<<b<<",";
if(b>=600)
cout<<"这个班很牛。";
else if(b>=400 and b<=599.99)
cout<<"这个班还不错。";
else
cout<<"这个班太差了。";
return 0;

}

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