摘要: #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... 阅读全文
posted @ 2018-12-01 00:46 Acoccus 阅读(254) 评论(0) 推荐(0) 编辑
摘要: #include const int maxn = 300; int a[maxn]; int main(void){ int n; while(scanf("%d", &n)!=EOF){ for(int i=0; i<n; i++){ scanf("%d", a+i); } int x; scanf("%d", &x); ... 阅读全文
posted @ 2018-12-01 00:07 Acoccus 阅读(226) 评论(0) 推荐(0) 编辑