m0_58693349 2021-06-20 14:07 采纳率: 33.3%
浏览 19
已采纳

大佬们可以帮我看看吗

 

  • 写回答

3条回答 默认 最新

  • 关注

    定义图书的结构体数组,循环输入再保存。

    参考:

    /* Note:Your choice is C IDE */
    #include "stdio.h"
    
    #define N 2
    struct Student
    {
    	//学号
    	int		num; //成员变量或者一个数据项
    	//姓名
    	char	name[20];
    	//性别
    	char	sex; //M,F
    	//成绩
    	float	html;	
    	float	ppt;
    	float	cyuyan;
    	float	sum;
    }st[N];
    void input();
    void display();
    void main()
    {
        input();
        display();
    }
    //输入函数
    void input()
    {
    	int i;
    	for(i=0;i<N;i++)
    	{
    		printf("请输入第%d个学生的学号,姓名,性别,html,ppt,cyuyan:",i+1);
    		scanf("%d",&st[i].num);
    		scanf("%s ",st[i].name);
    		scanf("%c ",&st[i].sex);
    		scanf("%f",&st[i].html);
    		scanf("%f",&st[i].ppt);
    		scanf("%f",&st[i].cyuyan);
    		st[i].sum = st[i].html+st[i].ppt+st[i].cyuyan;
    	}
    		
    }
    //输出
    void display()
    {
    	int i;
    	printf("学号\t姓名\t\t性别\thtml\tppt\tC语言\t总分\t平均分\n");	
    	for(i=0;i<N;i++)
    	{
    		printf("%d\t%s\t%c\t%0.2f\t%0.2f\t%0.2f\t%0.2f\t%0.2f\n",st[i].num,st[i].name,st[i].sex,st[i].html,st[i].ppt,st[i].cyuyan,st[i].sum,st[i].sum/3);
    	}	
    }
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 急,ubuntu安装后no caching mode page found等
  • ¥15 防火墙的混合模式配置
  • ¥15 Ubuntu不小心注销了要怎么恢复啊
  • ¥15 win10电脑安装完plcsim advanced4.0运行时为什么会提示找不到虚拟网卡
  • ¥15 安装powerbuilder10卡在安装程序正在运行这个页面 没有下一步任何指令
  • ¥15 关于mpi的问题:请问遇到这种情况需要怎么解决,出现这个问题后电脑不能进行mpi多核运行只能进行单核运行
  • ¥50 微信聊天记录备份到电脑提示成功了,但还是没同步到电脑微信
  • ¥15 python怎么在已有视频文件后添加新帧
  • ¥20 虚幻UE引擎如何让多个同一个蓝图的NPC执行一样的动画,
  • ¥15 fluent里模拟降膜反应的UDF编写