6-9——今日强化练习^0^我好强——涉及:结构体函数指针数组
Posted 歌咏^0^
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了6-9——今日强化练习^0^我好强——涉及:结构体函数指针数组相关的知识,希望对你有一定的参考价值。
问题:
一个班有N(N <20)名学生,每个学生修了五门课。编写程序:
1)求每个学生的平均成绩,并输出每个学生的学号,每门课程的成绩及平均值。
2)求某门课程的平均分;
要求:
1) 分别编写2个函数实现以上2个要求。
2) 第1个函数用数组名作形式参数。第2个函数用指针作形式参数,并在函数体内用指针对数组操作。
输入
第一行:输入N,代表N名学生。
下面N行,每行有6个数据分别为:学号,英语成绩,数学成绩,C++成绩,音乐成绩,美术成绩
输出
首先输出N行:每行为学生学号,每门成绩和平均成绩(平均成绩四舍五入保留一位小数);
最后按顺序输出每门平均成绩(平均成绩四舍五入保留一位小数)
#include <stdio.h>
int n = 0;
typedef struct Student
{
int id;
int score[5]; //score数组元素分别为:英语成绩,数学成绩,C++成绩,音乐成绩,美术成绩
}Stu;
//把学生的学号id和五门成绩包装成结构体
void input(Stu arr[])
{
int i = 0;
for (i = 0; i < n; i++)
{
scanf("%d%d%d%d%d%d", &arr[i].id, &arr[i].score[0], &arr[i].score[1],
&arr[i].score[2], &arr[i].score[3], &arr[i].score[4]);
}
}
//输入n名学生的数据
int pj1(int* p)
{
int i = 0;
int t = 0;
t = (p[0] + p[1] + p[2] + p[3] + p[4]) / 5;
return t;
}
//求一名学生的平均成绩
int pj2(Stu* p,int x)
{
int t = 0;
t = (p[0].score[x] + p[1].score[2] + p[3].score[x] + p[4].score[x]);
return t;
}
//求某门课程的平均成绩
int main()
{
Stu student[10] = { 0 };
int i = 0;
scanf("%d\\n", &n);
input(student);
for (i = 0; i < n; i++)
{
printf( "%d %d %d %d %d %d %d\\n",student[i].id, student[i].score[0], student[i].score[1],
student[i].score[2], student[i].score[3], student[i].score[4],pj1(student[i].score));
}
//输出n名学生的学号,成绩和平均成绩
for (i = 0; i < 5; i++)
{
printf("%d ",pj2(student, i));
}
//输出某门课程的平均成绩
return 0;
}
样例输入
4
20070001 94 92 97 93 90
20070005 84 89 92 81 73
20070004 82 75 94 86 95
20070003 84 86 82 97 91
样例输出
20070001 94 92 97 93 90 93.2
20070005 84 89 92 81 73 83.8
20070004 82 75 94 86 95 86.4
20070003 84 86 82 97 91 88.0
86.0 85.5 91.3 89.3 87.3
^o^求点赞求、关注,谢谢,感激不尽
以上是关于6-9——今日强化练习^0^我好强——涉及:结构体函数指针数组的主要内容,如果未能解决你的问题,请参考以下文章