#include <stdio.h>
int main()
{
int score = 7200;
if(score >= 10000)//完善一下代码
{
printf("钻石玩家");
}
else if(score>=5000)
{
printf("白金玩家");
}
else if(score>=1000)
{
printf("青铜玩家");
}
else(score>=0)/*这里用else它显示错误的,但是改成else if就可以了,为什么不可以用else*/
{
printf("普通玩家");
}
return 0;
}
因为else是判断的,而这里是加了条件的,所以要用else if语句,if表示使用后面的条件