问答详情
源自:6-12 综合练习

前面的总分和平均分没问题,加入后面的排序之后就出了问题,小白想请教下各位大神怎么解决~~~

#include <stdio.h>

int main()

{

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

    int sum,i,j,high,low;

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

    {

    sum+=score[i];

    }

    int average;

    average=sum/10;

    printf("考试的总分%d\n",sum);

    printf("考试的平均分%d\n",average);

    

    for(i=9;i>=0;i--)

    {

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

        {

            if(score[j]>score[j+1]);

            {

                double temp;

                temp = score[j];

                score[j]=score[j+1];

                score[j+1]=temp;

            }

        }

    }

    

    high=score[9];

    low=score[0];

    printf("考试的最高分%d\n",high);

    printf("考试的最低分%d\n",low);

    

   

  

    

    

    

    return 0;

}


提问者:慕沐0476572 2018-12-24 23:21

个回答

  • 慕沐0476572
    2018-12-25 09:32:24

    已解决

  • 慕沐0476572
    2018-12-24 23:23:10

    /bin/bash: line 1: 24478 Segmentation fault      (core dumped) hello
    考试的总分786

    右边显示这个愣是没看懂