qq_慕婉清3527470
2021-01-21 21:45
#include <stdio.h>
int main()
{
int score = 7200;
if(score>=10000) //完善一下代码
{
printf("钻石玩家");
}
else if(score>=5000)
{
printf("白金玩家");
}
else if (score>=1000)
{
printf("青铜玩家");
}
else (score<1000)
{
printf("普通玩家");
}
return 0;
}
else{}不能带条件啊
if(条件){ }else if(条件){ }else{ }
else是不带条件的,表示达不到if和else if的条件最后去执行的步骤。
C语言入门
926021 学习 · 20793 问题
相似问题