程序的功能是输入多名学生的姓名及其四科成绩,输出每一名学生的平均成绩。调试运行以下程序,改正其
程序的功能是输入多名学生的姓名及其四科成绩,输出每一名学生的平均成绩。调试运行以下程序,改正其中的错误。#include
struct stud
{
char name[30];
float score[4];
float total;
float average;
}
int main(void)
{
struct stud st[5];
int i,j;
for(i=0;i<5;i++)
{
scanf("%s",st[i].name);
for(j=0;j<4;j++)
scanf("%f",st[i].score[j]);
}
for(i=0;i<5;i++)
{
st[i].total=0;
for(j=0;j<4;j++)
st[i].total+=st[i].score[j];
st[i].average=st[i].total/4;
printf("%.1f\n",st[i].average);
}
return 0;
}
要求:
输入五名学生的姓名及四科成绩,数据之间以空格或回车间隔,分行输出五个平均值,保留一位小数(四舍五入)。