解题思路:
注意事项:
参考代码:
#include<stdio.h> struct student { char sno[20]; char sname[20]; int cj1; int cj2; int cj3; }; void input(struct student st[],int n) { int i; for(i = 0; i < n; i++){ scanf("%s%s%d%d%d",&st[i].sno,&st[i].sname,&st[i].cj1,&st[i].cj2,&st[i].cj3); } } void print(struct student st[],int n) { int i; for(i = 0; i < n; i++){ printf("%s,%s,%d,%d,%d\n",st[i].sno,st[i].sname,st[i].cj1,st[i].cj2,st[i].cj3); } } int main() { int N; struct student st[100]; scanf("%d",&N); input(st,N); print(st,N); return 0; }
0.0分
0 人评分
Tom数 (C语言代码)浏览:2074 |
C语言训练-自由落体问题 (C语言代码)浏览:1775 |
计算质因子 (C++代码)浏览:1824 |
【金明的预算方案】 (C++代码)浏览:996 |
C语言程序设计教程(第三版)课后习题9.8 (C语言代码)浏览:646 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:490 |
水仙花 (C语言代码)浏览:1163 |
K-进制数 (C语言描述,蓝桥杯)浏览:955 |
简单的a+b (C语言代码)浏览:572 |
1051(奇了怪了)浏览:747 |