感觉没有错啊

来源:6-12 综合练习

慕粉0938392820

2016-12-27 13:08

#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回答

  • 慕运维5483060
    2016-12-27 15:45:39

    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循环应该加“{}”

C语言入门

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

926020 学习 · 20793 问题

查看课程

相似问题