printf("钻石玩家"); 和 printf(“%s\n”,"钻石玩家"); 有区别吗? 不加“%s\n” 有问题吗?
#include <stdio.h>
int main()
{
int score = 7200;
//完善一下代码
if(score >=10000)
{
printf("钻石玩家");
}
else if(score >= 5000)
{
printf("白金玩家");
}
else if(score >=1000)
{
printf("青铜玩家");
}
else
{
printf("普通玩家");
}
return 0;
}