#include#include const int maxn = 1e3;struct student{ char id[10]; char name[70]; //!!!!!!! char gender[3]; int age;} stu[maxn]; int main(void){ int n; while(scanf("%d", &n)!=EOF){ for(int i=0; i
本文共 312 字,大约阅读时间需要 1 分钟。
#include#include const int maxn = 1e3;struct student{ char id[10]; char name[70]; //!!!!!!! char gender[3]; int age;} stu[maxn]; int main(void){ int n; while(scanf("%d", &n)!=EOF){ for(int i=0; i
转载于:https://www.cnblogs.com/acoccus/p/10047914.html