C语言新手 问题求教! 我实在不知道哪里有问题!为什么运行不了?调试的我看不懂
//此程序用来计算五名学生的平均成绩,和四门科目的平均成绩。
#include<stdio.h>
int main()
{
float score[5][4]={ {80,89,79,90},{78,92,69,85},{81,85,91,89},{79,85,86,89},{79,85,99,85}};
float x[5]={0,0,0,0,0,},y[4]={0,0,0,0};//X数组用来保存五名学生的平均成绩,Y数组用来保存四门课程的平均成绩
int i,j;
for(i=0;i<5;i++)
{
for(j=0;j<4;j++)
{
x[i]=x[i]+score[i][j];
}
}
for(j=0;j<4;j++)
{
for(i=0;i<5;i++)
{
y[j]=y[j]+score[i][j];
}
}
for(i=0;i<5;i++)
printf("The average score of the d% student is:f%\n",i+1,x[i]/4);
for(j=0;j<4;j++)
printf("The average score of the d% subject is:f%\n",j+1,y[j]/5);
}