望尽天涯路


私信TA

用户名:H1810819059

访问量:32262

签 名:

等  级
排  名 111
经  验 8081
参赛次数 6
文章发表 97
年  龄 0
在职情况 学生
学  校 贺州学院
专  业

  自我简介:

解题思路:随便你!!

注意事项:无!

参考代码:

#include<stdio.h>

struct stu

{

char num[10];

char name[20];

int a;

int b;

int c;

};

void input(struct stu student[100],int n)

{

int i;

for(i=0;i<n;i++)

{

scanf("%s%s%d%d%d",&student[i].num,&student[i].name,&student[i].a,&student[i].b,&student[i].c);

}

}

void output(struct stu student[100],int n)

{

int i;

for(i=0;i<n;i++)

{

printf("%s,%s,%d,%d,%d\n",student[i].num,student[i].name,student[i].a,student[i].b,student[i].c);

}

}

int main()

{

int i,j,n;

float max;

struct stu student[100];

scanf("%d",&n);

input(student,n);

output(student,n);

return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »