c语言:用结构体求平均分|练习题

发布时间:2024年01月04日

一、题目
用c语言的结构体,求4位学生成绩的平均分
如图:

3882146ed285466282114c5435b1ede9.jpg

?

二、代码截图【带注释】

8cf483eea02848399d065448c396b835.jpg

?

三、源代码【带注释】

#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;
}

关注我,?每天分享编程知识
?

文章来源:https://blog.csdn.net/2301_76173427/article/details/135396278
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。