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

为什么系统说这里没有“白金玩家”

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

提问者:慕粉4068182 2016-10-28 08:46

个回答

  • JustWannaHugU
    2016-10-28 09:01:12
    已采纳

    因为程序有错误呀,倒数第六行的else if改为 else就行了

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

    望采纳