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

为什么排序变成这样?

int DownM(int score[])

{

    int i,j,temp;

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

    {

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

        {

            if(score[j] < score[j+1])

            temp = score[j];

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

            score[j+1] = temp;

        }

    }

     printf("TheStudentScoreDownIs\n");

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

    {

        if(i!=9)

        {

            printf("%d\n",score[i]);

        }

        else{

            printf("%d",score[i]);

        }

    }

}



排序:http://img3.mukewang.com/5e323dff00013d1703740388.jpg

提问者:棹孤舟 2020-01-30 10:23

个回答

  • 延期开学的猫脚
    2020-02-17 19:01:57

    你把遍历里面的if里的执行语句多加对{}括起来就好了