这个程序有什么错误?
#include<stdio.h>void main()
{
int score;
scanf("%d",&score);
if (score < 60)
{
printf("%d\n" E);
}
else if(60 <= score < 70)
{
printf("%d\n" D);
}
else if(70 <= score < 80)
{
printf("%d\n" C);
}
else if(80 <= score 90)
{
printf("%d\n" B);
}
else
{
printf("%d\n" A);
}
}