求指导,一直没有运行出来
#include <stdio.h>void main ()
{
int score;
char ch;
printf("\输入百分制成绩:");
scanf ("%d,&score");
if (score﹤0‖score﹥100)
printf("\ninput error!\n);
else
{
switch (score/10);
{
case 10:
case 9:='A';break;
case 8:='B';break;
case 7:='C';break;
case 6:='D';break;
default :ch='E';
}
printf("\nthe score:%c\n",ch);
}
}