问题标题: 酷町堂:找错↓↓

0
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
潘孝宇
潘孝宇
初级光能
初级光能

else要么删掉‘{’,要么补上‘}’

0
0
我要回答