参考代码:
#include <stdio.h>
#include <stdlib.h>
struct student{
char id[20];
char name[20];
int a;
int b;
int c;
};
void input(struct student *p){
scanf("%s%s%d%d%d",p->id,p->name,&p->a,&p->b,&p->c);
}
void output(struct student *p){
printf("%s,%s,%d,%d,%d\n",p->id,p->name,p->a,p->b,p->c);
}
int main()
{
// cout << "Hello world!" << endl;
struct student buf[50],*p;
int n;
scanf("%d",&n);
for(p=buf;p<buf+n;p++){
input(p);
}
for(p=buf;p<buf+n;p++){
output(p);
}
return 0;
}
0.0分
0 人评分
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:725 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:580 |
C语言训练-排序问题<1> (C++代码)浏览:624 |
【出圈】 (C语言代码)浏览:586 |
这可能是一个假的冒泡法浏览:1060 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:935 |
兰顿蚂蚁 (C++代码)浏览:1150 |
1012题解浏览:934 |
罗列完美数 (C语言代码)浏览:514 |
sizeof的大作用 (C语言代码)浏览:1129 |