为了账号安全,请及时绑定邮箱和手机立即绑定

各位帮忙看一下!!


#include <stdio.h>

int i,j;

int sortscore(int socre[])

{

    int temp;

    for(i=0;i<10;i++)

    {

        for(j=i+1;j<10;j++)

        {

            if(score[i]<score[j])

               temp=score[i];

               score[i]=score[j];

               socre[j]=temp;

        }

        return socre;

    }

}

int sumscore(int score[])

{

    for(i=;i<10;i++)

    {

        sum+=score[i];

    }

    return sum;

    printf("考试成绩总分为:%d\n",sum);

}

int maxscore(int score[]){

    printf("最高分为:%d\n",score[N-1]);

}

int minscore(int score[]){

    printf("最低分为:%d\n",score[0]);

}

int avagerscore(int score[]){

    int avager;

    avager=sum/N;

    printf("平均分为:%d\n",avager);

}

int main()

{

    int score[10]={67,98,75,63,82,79,81,91,66,84};

    sortscore(score);

    sumscore(score);

    maxscore(score);

    minscore(score);

    avagerscore(score);

    printf("考试成绩降序排序为%d\n",score[]);

    return 0;

}

hello.c: In function 'sortscore':
hello.c:10:16: error: 'score' undeclared (first use in this function)
             if(score[i]


正在回答

1 回答

有个地方没写上,https://img1.sycdn.imooc.com//5b4d9de300017ef701570101.jpg

而且,你的排序是从大到小,最大值和最小值出错了

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C语言入门
  • 参与学习       926019    人
  • 解答问题       20793    个

C语言入门视频教程,带你进入编程世界的必修课-C语言

进入课程

各位帮忙看一下!!

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信