摘要:
#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(" 阅读全文
摘要:
#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 阅读全文
摘要:
#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 % 阅读全文
摘要:
#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 % 阅读全文
摘要:
#include<stdio.h>#include<string.h>struct student{ long no; char name[9]; int ch[20]; int count;//多定义一个count来看某个学生是不是每科的成绩都大于平均值 }read(struct student 阅读全文