编写一个函数print,打印一个学生的成绩数组,该数组中有5个学生的数据记录,每个记录包括num,name,score[3],用主函数输入这些记录,用print函数输出这些记录。
程序员文章站
2022-06-06 08:37:59
...
编写一个函数print,打印一个学生的成绩数组,该数组中有5个学生的数据记录,每个记录包括num,name,score[3],用主函数输入这些记录,用print函数输出这些记录。
在这里插入代码片#include <stdio.h>
#include <stdlib.h>
typedef struct
{
int num;
char name[10];
double score[3];
}Student;
void print(Student *stu)
{
for (int i = 0; i < 5; i++)
{
printf("%d %s %.1lf %.1lf %.1lf\n", stu[i].num, stu[i].name, stu[i].score[0], stu[i].score[1], stu[i].score[2]);
}
}
int main()
{
Student stu[5];
for (int i = 0; i < 5; i++)
{
scanf("%d%s%lf%lf%lf", &stu[i].num, &stu[i].name, &stu[i].score[0], &stu[i].score[1], &stu[i].score[2]);
}
print(stu);
system("pause");
return 0;
}
答案
编写一个函数print,打印一个学生的成绩数组,该数组中有5个学生的数据记录,每个记录包括num,name,score[3],用主函数输入这些记录,用print函数输出这些记录。
上一篇: 喷打故障维护小技巧
下一篇: 今天碰到一个可爱的小跑车……