摄魂猎手
2020-04-03 10:54
#include <stdio.h>
int main()
{
int score = 7200;
if(score>=10000)
{
printf("%s\n","钻石玩家");
}
else if(score>=5000&&score<10000)
{
printf("%s\n","白金玩家");
}
else if(score>=1000&&score<5000)
{
printf("%s\n","青铜玩家");
}
else
{
printf("%s\n","普通玩家");
}
return 0;
}
没什么问题,就是程序简洁性,你可以把比如这句(score>=5000&&score<10000)改成(score>=5000)因为程序向下运行除了大于等于10000的部分就是小于10000的部分,这时(score>=5000)就表示大于等于5000小于10000的部分了。
C语言入门
926023 学习 · 20793 问题
相似问题