在一个长度为10的整型数组里面,保存了班级10个学生的考试成绩。要求编写5个函数,分别实现计算考试的总分,最高分,最低分,平均分和考试成绩降序排序。
#include <stdio.h>
int main()
{
int score[]={67,98,75,63,82,79,81,91,66,84};
int num;
int all;
int i;
int j;
int qw;
for(num=0,all=0;num<10;num++)
{
all+=score[num];
}
printf("这次考试十个学生的总分是%d。\n",all);
printf("这次考试的平均分是%.1f。\n",all/10.0);
for(qw=0;qw<=10;qw++)
{
for(j=0;j<=9;)
{
if(score[j]<score[j+1])
{
i=score[j+1];
score[j+1]=score[j];
score[j]=i;
}
j+=1;
}
}
printf("这次考试最高分是%d。\n",score[0]);
printf("这次考试最低分是%d。\n",score[9]);
printf("这次考试按排名排是 ");
for(i=0;i<=9;i++)
{
printf("第%d名:%d分。",i+1,score[i]);
}
return 0;
}