提示有一个错误,找不到?
#include<stdio.h>int main()
{
printf(" MENU \n");
printf("=========================================\n");
printf("1.input the students'nameS and scores\n");
printf("2.search scores of some students\n");
printf("3.modify scores of some students\n");
printf("4.list all students'scores\n");
printf("5.quit the system\n");
printf("=========================================\n");
int i,j;
char name[20]char id[20];int ENGLISH[5]int math[5]int chinese[5];
printf("please input your choice(1-5):");
scanf("%d",&i);
switch(i)
{
case 1:printf("===MENU 1.input the students'nameS and scores===\n=== please input the students'information ===\n");
printf("name:");
for(j=0;j<20;j++)
scanf("%c",&name[j]);
printf("\nid:");
for(j=0;j<20;j++)
scanf("%c",&id[j]);
printf("\nENGLISH:");
for(j=0;j<5;j++)
scanf("%d",&ENGLISH[J]);
printf("\nmath:");
for(j=0;j<5;j++)
scanf("%d",&math[j]);
printf("\nchinese:");
for(j=0;j<5;j++)
scanf("%d",&chinese[j]);
printf("\n");
break;
case 4:printf("===MENU 4.list all students'scores===\n");
for(j=0;j<20;j++)
printf("%c\n",name[j]);
for(j=0;j<20;j++)
printf("%c\n",id[j]);
for(j=0;j<5;j++)
printf("%d\n",ENGLISH[J]);
for(j=0;j<5;j++)
printf("%d\n",math[j]);
for(j=0;j<5;j++)
printf("%d\n",chinese[j]);
}
}