慕数据9287510
2021-04-23 09:31
#include <stdio.h>
int main()
{
int score = 7200;
//完善一下代码
if(score>=10000)
{
printf("钻石玩家");
}
else if(score>=5000&&score<10000)
{
printf("白金玩家");
}
else if(score>=1000&&score<5000)
{
printf("青铜玩家");
}
else
{
printf("普通玩家");
}
return 0;
}
#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;
}
&&是且的意思,比如score>=5000&&score<10000,score>=5000,第一个是5000到10000是白金玩家,第二个是大于5000是白金玩家,可当大于1w的时候第二个代码会直接判定为钻石玩家。
加上&&你可以从青铜玩家开始写,可以避免当score>10000的时候直接输出青铜玩家
C语言入门
926025 学习 · 20793 问题
相似问题