摘要: #include<stdio.h>struct employee{ long no; char name[9]; int birth[4];};void input(struct employee emp[100],int n){ int i; for(i=1;i<=n;i++) { scanf(" 阅读全文
posted @ 2020-02-09 20:49 我是个好孩子 阅读(160) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>struct student{ long no; char name[9]; int score;};void input(struct student stu[100],int n){ int i; for(i=0;i<n;i++) { scanf("%ld %s 阅读全文
posted @ 2020-02-09 19:56 我是个好孩子 阅读(263) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>struct student{ long no; char name[9]; int score;} ;void input(struct student stu[],int n){ int j; for(j=0;j<n;j++) { scanf("%ld %s % 阅读全文
posted @ 2020-02-09 19:54 我是个好孩子 阅读(153) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>struct student { long no; char name[9]; int score;} t;void input(struct student stu[],int n) { int i; for(i=0;i<n;i++) { scanf("%ld % 阅读全文
posted @ 2020-02-09 17:03 我是个好孩子 阅读(228) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<string.h>struct student{ long no; char name[9]; int ch[20]; int count;//多定义一个count来看某个学生是不是每科的成绩都大于平均值 }read(struct student 阅读全文
posted @ 2020-02-09 14:52 我是个好孩子 阅读(197) 评论(0) 推荐(0) 编辑