本文主要是介绍c语言:用结构体求平均分|练习题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、题目
用c语言的结构体,求4位学生成绩的平均分
如图:
二、代码截图【带注释】
三、源代码【带注释】
#include <stdio.h>
float aver();//声明平均分函数
void printScore();//声明打印函数
//设置结构体,
struct student
{
int id;
int score;
} stu[4];
int main()
{
struct student stu[4]= {{1,80},{2,89},
{3,78},{4,86}};
printScore(stu);
printf("\n4个学生的平均分是:%.2f",aver(stu));
}
//打印4位学生的成绩
void printScore(struct student stu[])
{
for(int i=0; i<4; i++)
{
printf("第%d位学生的成绩是:%d\n",(i+1),
stu[i].score);
}
}
//设置平均分函数,求4位学生的平均分
float aver(struct student stu[])
{
int sum=0;
for(int i=0; i<4; i++)
{
sum=sum+stu[i].score;
}
return (float)sum/4;
}
关注我, 每天分享编程知识
这篇关于c语言:用结构体求平均分|练习题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!