解题思路:
注意事项:
参考代码:
#include<stdio.h>
#define N 100
struct student
{
char num[10];
char name[10];
int score[3];
};
void input(struct student *stu,int n)//把结构体变量正常对待即可
{
int i;
for(i = 0; i < n; i++)
scanf("%s%s%d%d%d",stu[i].num,stu[i].name,stu[i].score,stu[i].score+1,stu[i].score+2);
//stu[i].score是score数组的首地址
}
void print(struct student *stu,int n)
{
int i;
for(i = 0; i < n; i++)
printf("%s,%s,%d,%d,%d\n",stu[i].num,stu[i].name,stu[i].score[0],stu[i].score[1],stu[i].score[2]);
}
int main()
{
struct student stu[N];
int n;
scanf("%d",&n);
input(stu,n);
print(stu,n);
return 0;
}
0.0分
0 人评分
【绝对值排序】 (C++代码)浏览:720 |
【偶数求和】 (C语言代码)浏览:674 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:504 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:648 |
三角形 (C++代码)记忆化搜索浏览:1318 |
C语言程序设计教程(第三版)课后习题7.1 (C语言代码)浏览:642 |
C语言程序设计教程(第三版)课后习题9.10 (C语言代码)浏览:583 |
C语言程序设计教程(第三版)课后习题9.2 (C语言代码)浏览:573 |
C二级辅导-计负均正 (C语言代码)浏览:523 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:383 |