文章

10

粉丝

17

获赞

0

访问

3.9k

头像
二进制数 题解:
P1380 北京邮电大学机试题
发布于2024年7月20日 20:32
阅读数 341

#include<bits/stdc++.h>
using namespace std;

void f(unsigned int x){
    char y[1024] = {0};
    int i = 0;
    
    while(x){
        y[i++] = x % 2 + '0';
        x = x / 2;
    }
    
    for (int j = i - 1; j >= 0; j--) {
        printf("%c", y[j]);
    }
    printf("\n");
}


int main(){
    unsigned int x;
    while(scanf("%u", &x) != EOF){
        f(x);
    }
    return 0;
}

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发