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

新人求问不知道哪儿错了,谢谢大家了

#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    if(score >=10000)

    {

        printf("%s\n","钻石玩家");

    }

    else if(score >=50000)

    {

       printf("%s\n","白金玩家");    

    }

    else if(score >=1000)

    {

        printf("%s\n","青铜玩家");     

    }

    else 

    { 

        printf("%s\n","普通玩家");    

    }

     return 0;

}


提问者:songguogo 2015-09-03 15:12

个回答

  • Perona
    2015-09-03 16:25:51
    已采纳

    else if(score >=50000)

    这里多打了个0

    else if(score >=5000)
    printf("%s\n","白金玩家");

    这里逗号错了,改成英文的即可

    printf("%s\n","白金玩家");
    else if(score >=1000)

    这里(也打成中文,改成英文的

    else if(score >=1000)