C编程问题,程序出错了,求大神解答,一下是我编写的,请各位大神帮帮忙

#include<stdio.h>#defineM45structstudent{intstuno;charname[20];floatscore[3];floatave... #include<stdio.h>
#define M 45
struct student
{int stuno;
char name[20];
float score[3];
float average;
}
void input(struct student s[],int n)
{int i,j;
struct student t;
for(i=1;i<=n;i++)
{scanf("%d%s",&t.stuno,t.name);
for(j=0;j<=2;j++)
scanf("%f",&t.score[j]);
s[i]=t;
}
}
void caculate(struct student s[],int n)
{int i,j;
for(i=0;i<=n;i++)
s[i].average=0;
for(j=0;j<=2;j++)
s[0].score[j]=0;
for(i=1;i<=n;i++)
{for(j=0;j<=2;j++)
{s[i].average+=s[i].score[j];
s[0].score[j]+=s[i].score[j];
}
s[i].average/=3;
}
for(j=0;j<=2;j++)
s[0].score[j]/=n;
}
void output(struct student s[],int n)
{int i,j;
printf("stuno name score[0] score[1] score[2] average\n");
for(i=1;i<=n;i++)
{printf("%-5d%10s",s[i].stuno,s[i].name);
for(i=0;j<=2;j++)
printf("%6.1f",s[i].score[j]);
printf("%6.1f\n",s[i].average);
}
printf("average of total");
for(j=0;j<=2;j++)
printf("%6.1f",s[0].score[j]);
printf("\n");
}
void main()
{struct student stu[M];
int n;
printf("Please input the number of students(1-45)");
scanf("%d",&n);
input(stu,n);
caculate(stu,n);
output(stu,n);
}
展开
 我来答
天天吃火锅鸡
2012-11-30 · 超过10用户采纳过TA的回答
知道答主
回答量:39
采纳率:0%
帮助的人:30万
展开全部
struct student
{int stuno;
char name[20];
float score[3];
float average;
};
加一个分号
更多追问追答
追问
请问为什么我运行后会乱码?
追答
你的
void output(struct student s[],int n)
{int i,j;
printf("stuno name score[0] score[1] score[2] average\n");
for(i=1;i<=n;i++)
{printf("%-5d%10s",s[i].stuno,s[i].name);
for(j=0;j<=2;j++)// !!!这里错了
printf("%6.1f",s[i].score[j]);
printf("%6.1f\n",s[i].average);
}
printf("average of total");
for(j=0;j<=2;j++)
printf("%6.1f",s[0].score[j]);
printf("\n");
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式