hantangmingw


私信TA

用户名:dotcpp0717853

访问量:103

签 名:

等  级
排  名 7376
经  验 1321
参赛次数 0
文章发表 2
年  龄 0
在职情况 学生
学  校 济宁学院
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#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 人评分

  评论区

  • «
  • »