#include <stdio.h>
int main()
{
int score = 7200;
//完善一下代码
if (socre>=10000)
{
printf("钻石玩家");
}
else if(socre>=5000 && socre<10000)
{
printf("白金玩家");
}
else if(socre>=1000 && socre<5000)
{
printf("青铜玩家");
}
else
{
printf("普通玩家");
}
return 0;
}
后面就不用写 && socre < 10000 了,如果第一句 if(socre > 10000)没有执行,就肯定小于10000
神tm最佳回答,你score写错了吧,为了严谨,条件一定要写全,不然维护起来是大麻烦