帮忙看一下,哪里有问题?

来源:4-3 分支结构之多重if-else语句

瘦瘦的年轻人

2018-09-02 20:35

#include <stdio.h>

int main() 

{

    int score = 7200;

if(score >=10000)    

{

    printf("钻石玩家");

}

else if(score>=5000)    

{

    printf("白金玩家");    

}

else if(socre>=1000)    

{

    printf("青铜玩家");     

}

else  

{

    printf("普通玩家");    

}

    return 0;

}


写回答 关注

5回答

  • 慕移动9181930
    2022-03-25 14:49:23
  • i165
    2018-09-08 14:35:27


    #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 if(score <1000)
        {
            printf("普通玩家");    
        }
        return 0;
    }

  • 李junjia
    2018-09-05 16:51:48

    1000那个score打错了

  • maiyu
    2018-09-05 10:10:08

    else if(socre>=1000)   

    score 错打为 ‘socre ’

  • 慕函数6451650
    2018-09-02 21:28:51

    格式错误

C语言入门

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

926021 学习 · 20793 问题

查看课程

相似问题