问答详情
源自:4-3 分支结构之多重if-else语句

我想问一下错到哪里了???

#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;

}


提问者:Sinsoledad9799954 2021-01-20 16:02

个回答

  • qq_慕前端8492412
    2021-01-20 16:44:58

    if里面的条件不对 


  • Sinsoledad9799954
    2021-01-20 16:05:52

    #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;


    }