谁能帮我看看代码有什么问题

来源:6-12 综合练习

dear_cc

2016-12-03 20:31

#include <stdio.h>
int main()
{
    int score[10]={67,98,75,63,82,79,81,91,66,84};
    int sum;
    int max;
    int min;
    float ave;
   
    printf("Total score : %d\n",sum);
    printf("Max score : %d\n",max);
    printf("Min Score : %d\n",min);
    printf("Average score : %f\n",ave);
    return 0;
}

int i;
int sum=0;
for(i=0;i<10;i++)
{
    sum+=score[i];
}
return sum;

int j;
int temp;
for(j=0;j<10; j++)
{
    if(score[j]<score[j+1])
    {
        temp=score[j];
        score[j]=score[j+1];
        score[j+1]=temp;
    }
}
max=score[0];
min=score[9];
printf("Decending order : %d\n",score);
return max,min;


ave=sum/10;


写回答 关注

1回答

  • qq_墨中白_04406896
    2016-12-04 00:14:16
    已采纳

    排序方法有问题

    int i,j;

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

        {

            for(j=8;j>=i;j--)

            int temp;

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

            temp=score[j+1];

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

            score[j]=temp;

        }

    这才是冒泡排序法!希望能够帮到你!

    dear_c...

    非常感谢!

    2016-12-06 15:14:29

    共 1 条回复 >

C语言入门

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

926210 学习 · 20797 问题

查看课程

相似问题