最后一行有问题。求大师指点
#include <stdio.h>
int main()
{
int score = 7200;
//完善一下代码
if( score >= 10000)
{
printf("钻石玩家");
}
else if(score >= 5000 )
{
printf("白金玩家");
}
else if(score >= 1000 )
{
printf("青铜玩家");
}
else(score < 1000)
{
printf("普通玩家"); 、// 每次有这一步的时候错误。没有的话正常。求大佬们指点。
}
return 0;
}