调用函数输入与输出
这个函数可运行,但实际操作时却出问题,什么原因?有空热心人士请帮个忙!
#include "Stdio.h"
char st[6][15];
float cj[6][4];
main()
{ void input();
void output();
input();
output();
getch();
}
void input( )
{
int i,j;
for(i=1;i<6;i++)
{
printf("input the %dth name and score:\n",i);
scanf("%s",st[i]);
for(j=1;j<4;j++)
scanf("%f",&cj[i][j]);
}
}
void output()
{ int i,j;
printf("the students' scores show as follows:\n");
for(i=1;i<6;i++)
{ printf("%8s",st[i]);
for(j=1;j<4;j++)
printf("%7.2f",cj[i][j]);
printf("\n");
}
}