为什么我这个开头是91 其他全都对呢

来源:6-12 综合练习

weixin_慕圣7271912

2019-03-04 15:08

#include <stdio.h>

int main()

{

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

    int i,j;

    int temp;

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

    {

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

        {

            if (score[i]<score[j])

            {

                temp=score[i];

                score[i]=score[j];

                score[j]=temp;

            }

        }

    }

    int sum=0;

    int k;

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

    {

        sum=sum+score[k];

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


    }

    printf("\nTotal score=%d\n",sum);

    printf("Maximum score=%d\n",score[k-1]);

    printf("Minimum score=%d\n",score[0]);

    printf("Average score=%d\n",sum/10);

    

    return 0;

}

结果 91 63 66 67 75 79 81 82 84 98 Total score=786 Maximum score=98 Minimum score=91 Average score=78

写回答 关注

3回答

  • __Call_Me_BayMax
    2019-04-23 18:08:02

    你这个不是冒泡排序,从if开始就错了

     if (score[i]<score[j])

                {

                    temp=score[i];

                    score[i]=score[j];

                    score[j]=temp;

                }

    应该是score[j]和score[j+1]进行比较吧。

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

        {

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

            {

                if(score[j]<score[j+1])      //当前面的数比后面的数大时

                {

                    int temp;    //定义临时变量temp

                    temp=score[j];     //将前面的数赋值给temp

                    score[j]=score[j+1];              //前后之数颠倒位置

                    arr[j+1]=temp;              //将较大的数放在后面    

                }                 

            }                

        }


  • LRS言叶
    2019-03-06 16:01:50

    #define N 10

    for(i = N - 1; 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;

                }

            }

        }


  • weixin_慕妹6045815
    2019-03-05 17:15:16

    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;

             }

         }

    }



C语言入门

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

926026 学习 · 20793 问题

查看课程

相似问题