|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 296938795 于 2020-12-4 12:33 编辑
这是题目:定义一个结构体Student,成员有num,name和C,Java,Python三门课程的成绩以及平均分ave,定义一个动态结构体数组a,存储N个学生信息,从键盘输入N和N个学生数据,计算每个学生平均分,输出N个学生的所有信息。数据用空格隔开,平均分保留小数点后1位.
目前不知道下一步应该怎么改,想体现出C、Java、Python,更切题一些。请各位支个招 写一下你的想法。
#include<stdio.h>
#define N
struct Student
{int num;
char name[20];
float score[3];
float aver;
};
int main()
{ void input(struct Student stu[]);
struct Student max(struct Student stu[]);
void print(struct Stdent stu);
struct Student stu[N],*p=stu;
input(p);
print(max(p));
return 0;
}
void input(struct Student stu[])
{int i;
printf("请输入学生的信息:学号、姓名、3门课成绩:\n");
for(i=0;i<N;i++)
{scanf("%d %s %f %f %f",&stu[i].num,stu[i].name,
&stu[i].score[0],&stu[i].score[1],&stu[i].score[2]);
stu[i].aver=(stu[i].score[0]+stu[i].score[1]+stu[i].score[2])/3.0;
}
}
void print(struct Student stud)
{ printf("学号:%d\n姓名:%s\n三门课成绩:%5.1f,%5.1f,%5.1f\n平均成绩:%6.1f\n",
stud.num,stud.name,stud.score[0],stud.score[1],stud.score[2],stud.aver);
} |
|