解题思路:
注意事项:
参考代码:
#include <stdio.h>
struct stu
{
char num[100];
char name[100];
int score[3];
};
void input(struct stu *a,int n);
void output(struct stu *a,int n);
int main(){
int n;
scanf("%d",&n);
struct stu a[n];
input(a,n);
output(a,n);
return 0;
}
void input(struct stu *a,int n){
int i;
for(i=0;i<n;i++){
scanf("%s%s%d%d%d",a[i].num,a[i].name,&a[i].score[0],&a[i].score[1],&a[i].score[2]);
}
}
void output(struct stu *a,int n){
int i;
for(i=0;i<n;i++){
printf("%s,%s,%d,%d,%d\n",a[i].num,a[i].name,a[i].score[0],a[i].score[1],a[i].score[2]);
}
}
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:607 |
简单的a+b (C语言代码)浏览:528 |
【数组的距离】 (C语言代码)浏览:787 |
C语言训练-求函数值 (C语言代码)浏览:600 |
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:573 |
淘淘的名单 (C语言代码)浏览:1167 |
简单的a+b (C语言代码)浏览:674 |
C语言程序设计教程(第三版)课后习题10.3 (C语言代码)浏览:1968 |
DNA (C语言代码)浏览:440 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:567 |