为了账号安全,请及时绑定邮箱和手机立即绑定

疯狂嵌套 呼呼

#include <stdio.h>
int main()
{
    int score = 7200;
    //完善一下代码
    if(score>=1000)
    {
        if(score>=5000){
             if(score>=10000){
                 printf("钻石玩家");
              }else{printf("白金玩家");}
        }else{printf("青铜玩家");}
    }else{        printf("普通玩家");}
   
    return 0;
}

正在回答

7 回答

我就搞不动了 那些直接发答案的是个什么心态。授人鱼不如授人以渔

1 回复 有任何疑惑可以回复我~

你这么嵌套,工作的时候是会死人的

0 回复 有任何疑惑可以回复我~

大佬为了学你这嵌套我抠了一个小时

0 回复 有任何疑惑可以回复我~

#include <stdio.h>
int main()
{
    int score = 7200;
    //完善一下代码
    if(score>=1000)
    {
        if(score>=5000){
             if(score>=10000){
                 printf("钻石玩家");
              }else{printf("白金玩家");}
        }else if(score>=1000){printf("青铜玩家");}
    }else{        printf("普通玩家");}
   
    return 0;
}


0 回复 有任何疑惑可以回复我~


an晕了

0 回复 有任何疑惑可以回复我~

#include <stdio.h>
int main()
{
    int score = 7200;
    //完善一下代码
    if(score>=10000)
    {
        printf("钻石玩家");
    }
    else if(score<10000&&score>=5000)
    {
        printf("白金玩家");   
    }
    else if(score<5000&&score>=1000)
    {
        printf("青铜玩家");    
    }
    else
    {
        printf("普通玩家");   
    }
    return 0;
}

0 回复 有任何疑惑可以回复我~

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    if(score>=10000)

    {

        printf("钻石玩家");

    }

    else if(score>=5000)

    {

        printf("白金玩家");    

    }

    else if(score>=1000)

    {

        printf("青铜玩家");     

    }

    else

    {

        printf("普通玩家");    

    }

    return 0;

}

拿去不谢

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C语言入门
  • 参与学习       926210    人
  • 解答问题       20797    个

C语言入门视频教程,带你进入编程世界的必修课-C语言

进入课程

疯狂嵌套 呼呼

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信