这题请教下

来源:4-4 分支结构之嵌套if-else语句

笑丶而不语

2016-10-16 22:32

58038f6d000197bf03600826.jpg如图谢谢

写回答 关注

3回答

  • 张幼安
    2016-11-04 14:48:15
    已采纳

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

    不加也是可以的。望采纳。

  • 慕码人1608616
    2016-10-16 23:41:20

    哪里不懂可以再提问


    慕码人160...

    不行这样的结果就会只要score>5000,那么输出就是钻石玩家和白金玩家,因为没有加上限

    2016-10-17 11:04:11

    共 2 条回复 >

  • 慕码人1608616
    2016-10-16 23:40:33

    #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

        {

            printf("普通玩家");    

        }

        return 0;

    }


C语言入门

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

926026 学习 · 20793 问题

查看课程

相似问题