解题思路:
注意事项:
参考代码:
#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
struct Student {
char num[20];
char name[20];
int x;
int y;
int z;
};
int main(int argc, char *argv[]) {
struct Student stu;
void input(struct Student *stuPtr);
void print(struct Student stu);
int n,i;
scanf("%d",&n);
for(i=0;i<n;i++){
input(&stu);
print(stu);
}
return 0;
}
void input (struct Student *stuPtr)
{
scanf("%s",stuPtr->num);
scanf("%s",stuPtr->name);
scanf("%d %d %d",&stuPtr->x ,&stuPtr->y,&stuPtr->z);
}
void print(struct Student stu)
{
printf("%s,%s,%d,%d,%d\n",stu.num,stu.name,stu.x,stu.y,stu.z);
}
0.0分
0 人评分
妹子杀手的故事 (C语言代码)浏览:1297 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:503 |
简单的a+b (C语言代码)浏览:626 |
C语言程序设计教程(第三版)课后习题9.4 (C语言代码)浏览:699 |
1011题解浏览:819 |
打印十字图 (C语言代码)浏览:2822 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:561 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:331 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:636 |
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:726 |