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

C语言入门

请问这段代码哪里有问题


#include <stdio.h>

int main() 

{

    int score = 7200;

    //完善一下代码

    if(score>=10000)

    {

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

    }

    else if(score>=5000)

    {

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

    }

    else if(scroe>=1000)

    {

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

    }

    else

    {

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

    }

    return 0;

}


提问者:慕盖茨2165851 2017-08-09 15:09

个回答

  • qq_蛋疼的青春_03909572
    2017-08-09 15:15:01

    http://img.mukewang.com/598ab660000192ba05800550.jpg

    变量写错了