慕少6515114
2020-04-13 21:54
#include <stdio.h>
int main()
{
int score = 87;
if (score>=90)
{
printf("等级A");
}
else if (score>=80)
{
printf("等级B");
}
else if (score>=60)
{
printf("等级C");
}
else
{
printf("等级D");
}
return 0;
}
你这个是不是少了这个字符“&”如果是90那是哪个等级,下面都满足啊。
C语言入门
926021 学习 · 20793 问题
相似问题