qq_闪电韦德MVP_0
2015-08-15 10:07
大家好多代码都不对,换个分数还是白金,除了大于10000的
参考代码
#include <stdio.h>
int main()
{
int score = 7200;
//完善一下代码
if(score>=10000)
{
printf("%s\n","钻石玩家");
}
else if(score>=5000)
{
printf("%s\n","白金玩家");
}
else if(score>=1000)
{
printf("%s\n","青铜玩家");
}
else
{
printf("%s\n","普通玩家");
}
return 0;
}C语言入门
928265 学习 · 21546 问题
相似问题