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

请大神帮忙看下这排序的函数问题出在哪里

打印出的结果为

67
0
98
98
98
98
98
98
98
98

int order()

{

    int i,j,t;

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

    {

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

        {

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

            {

                t = score[j];

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

                score[j+1] = t;

                

            }

           

        }

    

    

    }

    int x;

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

    {

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

        

        

    }

 return 0;

}


正在回答

1 回答

第二层for循环改为j<9-i;

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

举报

0/150
提交
取消

请大神帮忙看下这排序的函数问题出在哪里

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