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

感觉没有错啊

#include <stdio.h>


int main()

{

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

    int i,j;

    int temp;

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

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

        {

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

            {

                temp=score[j];

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

                score[j+1]=temp;

            }

        

        }

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

    {

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

    }

        return(0);

}


正在回答

1 回答

int main()

{

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

    int i,j;

    int temp;

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

      {  for(j=0;j<10;j++)

        {

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

            {

                temp=score[j];

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

                score[j+1]=temp;

            }

        }

       }

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

    {

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

    }

        return(0);

}

第一个for循环应该加“{}”

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

举报

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

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

进入课程

感觉没有错啊

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