二进制数问题

陌路散爱 提交于 2020-01-10 07:59:01

熟悉语言的水题

#include<cstdio>
bool judge(int num){  //直接用函数省事
    int count1=0;
    int count2=0;
    while(num>0){
        int temp=num%2;
        if(temp==0)
            count1++;
        else
            count2++;
        num=num/2;
    }
    if(count1>count2)
        return true;//如果0比1多,就证明是B类数
    return false;
}

int main(){
    int counta=0;
    int countb=0;
    for(int i=1;i<=1000;i++){
        if(judge(i))
           countb++;
        else
           counta++;
    }
    printf("%d %d",counta,countb);   //多熟悉scanf与printf的使用节省时间
    return 0;
}

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!