请各位看看问题出在哪里了
#include<stdio.h>main()
{
int score=0;
printf("please input your score:\n");
scanf("%d",&score);
if((score>100)||(score<0))
printf("please input your score again!\n");
switch(score/10)
{
case 10:
printf("the score is A.\n")
break;
case 9:
printf("the score is A.\n")
break;
case 8:
printf("the score is B.\n")
break;
case 7:
printf("the score is C.\n")
break;
case 6:
printf("the score is D.\n")
break;
default:
printf("the score is E.\n")
}
}