qq_s_47
2017-10-14 00:14
#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(score<1000);
{
printf("普通玩家");
}
return 0;
}为什么最后的else语句后面需要加;,不加就会出现错误提示。
else那里不需要判断条件啊 兄弟 if和else if判断后剩下的自然会给else 你加了条件就与上面if不是一起的了 else加了条件后你看输出是不是白金玩家普通玩家 加了条件后else就是自己单独的一个 当然要分号
C语言入门
926020 学习 · 20793 问题
相似问题