解题思路:
注意事项:可以把成绩定义成int型
参考代码:
#include <stdio.h>
struct Student{
char num[20];
char name[20];
float score[3];
};
int main(){
void Input(struct Student stu[],int n);
int n;
scanf("%d",&n);
struct Student stu[n],*p;
p=stu;
Input(p,n);
return 0;
}
void Input(struct Student stu[],int n){
int i;
for(i=0;i<n;i++){
scanf("%s%s%f%f%f",&stu[i].num,&stu[i].name,&stu[i].score[0],&stu[i].score[1],&stu[i].score[2]);
}
for(i=0;i<n;i++){
printf("%s,%s,%.0f,%.0f,%.0f\n",stu[i].num,stu[i].name,stu[i].score[0],stu[i].score[1],stu[i].score[2]);
}
}
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:589 |
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:690 |
简单的a+b (C语言代码)浏览:594 |
C语言程序设计教程(第三版)课后习题9.2 (Java代码)浏览:696 |
多输入输出练习1 (C语言代码)浏览:1219 |
printf基础练习2 (C语言代码)浏览:955 |
剪刀石头布 (C语言代码)浏览:802 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:672 |
【矩阵】 (C++代码)浏览:999 |
C语言程序设计教程(第三版)课后习题10.3 (C语言代码)浏览:1968 |