0
已解决
姜思远
初级光能
初级光能
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <map>
#include <algorithm>
#include <cstring>
#include <cstdlib>
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n,s1=0,s;
cin>>n;
while(n>0)
{
cin>>n;
if(n>=80)
{
s+=n;
s1++;
}
}
s=s/s1;
if(s>80)
{
cout<<"excellent";
}
else
{
cout<<"good";
return 0;
}
0
已采纳
何羽凡
修练者
修练者
错误分析:
1. 不需要那么多头文件,只要一个万能头文件就足够了。
2. "else"里面的语句要么用括号括起来(少了一个括号),要么不加括号。
望采纳!!!
0
0
0
0
0
0
0
0
0
0
0
0
0
0