2019/1/19数组练习

在一个长度为10的整型数组里面,保存了班级10个学生的考试成绩。要求编写5个函数,分别实现计算考试的总分,最高分,最低分,平均分和考试成绩降序排序。

#include <stdio.h>

int sum()
{
int score[10]={67,98,75,63,82,79,81,91,66,84};
int i ;double k=score[9]/10;
for(i = 0 ; i < 9 ; i++)
{
score[i + 1] += score[i] ;
}
printf(“本次考试总分为:%d\n\n本次考试平均分为:%d\n\n”, score[9] , k ) ;
return 0 ;

}

int b()
{
int score[10]={67,98,75,63,82,79,81,91,66,84};
int j , max ;
max = score[0] ;
for(j = 1 ; j < 10 ; j++ )
{
if(score[j] > max)
{
max = score[j] ;
}
}
printf(“本次考试最高分为:%d\n\n” , max ) ;
return 0 ;

}

int c()
{
int score[10]={67,98,75,63,82,79,81,91,66,84};
int k , min ;
min = score[0] ;
for(k = 0 ; k < 10 ; k++ )
{
if(score[k] < min )
{
min = score[k] ;
}
}
printf(“本次考试最低分为%d\n\n” , min) ;
return 0 ;

}

int d()
{
int score[10]={67,98,75,63,82,79,81,91,66,84};
int x , y , z ;
for(x = 0 ; x < 9 ; x++)
{
for(y = 0 ; y < 9 - x ; y++ )
if(score[y] < score[y + 1])
{
z = score[y] ;
score[y] = score[y + 1] ;
score[y + 1] = z ;
}
}
printf(“考试成绩降序如下:\n”) ;
for(y = 0 ; y <10 ; y++ )
{
printf("%d " , score[y] ) ;
}
printf("\n\n") ;
return 0 ;

}

int main()
{
sum() ;
b() ;
c() ;
d() ;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值