参考代码:
#include <stdio.h> struct Student { char ID[20]; char Name[20]; int Score[3]; }; int input(int n,struct Student stu[]); int print(int n,struct Student stu[]); int main() { struct Student stu[100]; int n = 0; scanf("%d",&n); input(n,stu); print(n,stu); return 0; } int input(int n,struct Student stu[]) { int i = 0; for(i=0;i<n;i++) { scanf("%s",stu[i].ID); scanf("%s",stu[i].Name); scanf("%d%d%d",&stu[i].Score[0],&stu[i].Score[1],&stu[i].Score[2]); } return 0; } int print(int n,struct Student stu[]) { int i = 0; for(i=0; i<n; i++) { printf("%s,",stu[i].ID); printf("%s,",stu[i].Name); printf("%d,%d,%d",stu[i].Score[0],stu[i].Score[1],stu[i].Score[2]); printf("\n"); } return 0; }
欢迎点评!!!
0.0分
1 人评分
数对 (C语言代码)浏览:762 |
模拟计算器 (C++代码)浏览:885 |
蓝桥杯历届试题-翻硬币 (C++代码)浏览:953 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:650 |
C二级辅导-计负均正 (C语言代码)浏览:523 |
模拟计算器 (C语言代码)浏览:2366 |
复数求和 (C语言代码)浏览:994 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:710 |
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:504 |
统计立方数 (C语言代码)浏览:890 |