龙仙森
2016-04-10 10:59
#include <stdio.h>
int main()
{
int score = 7200;
//完善一下代码
if(score>=10000)
{
printf("%s\n","钻石玩家");
}
else if(score>=5000)
{
printf("%s\n","白金玩家");
}
else if(score>=1000)
{
printf("%s\n","青铜玩家");
}
else(score<1000)
{
printf("%s\n","普通玩家");
}
return 0;
}
最后一个普通玩家那里 应该是else if ,少了一个if
你在普通玩家那个判断那里是else if
C语言入门
926020 学习 · 20793 问题
相似问题