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

运行成功,但是没有排序从来

#include <stdio.h>

#define N 10

int main()

{

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

    int i;

    int j;

    int 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("\n成绩降序排序为:\n");

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

    

  return 0;

}


正在回答

1 回答

你最后for循环什么都没有啊,加上printf语句

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


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

举报

0/150
提交
取消

运行成功,但是没有排序从来

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