qq_且行且珍惜_25
2017-03-13 22:54
if 语句怎么嵌套啊,多个选择怎么办
例如:
#include <stdio.h>
int main()
{
int score = 7200;
//完善一下代码
{
if(score>=10000)
printf("钻石玩家");
}
{
else (score>=5000&&score<10000)
printf("白金玩家");
}
{
else if(score>=1000&&score<5000)
printf("青铜玩家");
}
{
else (score<1000)
printf("普通玩家");
}
return 0;
}
有点看不懂你的问题,但是你想看if语句怎么嵌套,我给你发个代码
#include <stdio.h>
int main()
{
int sale = 120;
int year = 1;
if(sale >= 100)
{
if(year >= 2)
{
printf("小明有资格获得奖励\n");
}
else
{
printf("很遗憾,期望你再接再厉\n");
}
}
else
{
printf("滚蛋\n");
}
return 0;
}
C语言入门
926020 学习 · 20793 问题
相似问题