鱼C论坛

 找回密码
 立即注册
查看: 1302|回复: 2

C,求支招,做进一步修改

[复制链接]
发表于 2020-12-1 12:13:06 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

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);
        }
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-12-1 13:17:26 | 显示全部楼层
此帖仅作者可见
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com

使用道具 举报

 楼主| 发表于 2020-12-1 15:31:49 | 显示全部楼层
此帖仅作者可见
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 13:19

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表