hdu 2051 Bitset(进制转换)

Posted wz-archer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 2051 Bitset(进制转换)相关的知识,希望对你有一定的参考价值。

Problem Description

Give you a number on base ten,you should output it on base two.(0 < n < 1000)

Input

For each case there is a postive number n on base ten, end of file.

Output

For each case output a number on base two.

Sample Input

1
2
3

Sample Output

1
10
11
解:和hdu 2031 是一个题,代码直接拿过来用一下。
#include <algorithm>
#include <iostream>
#include <cstring>
#include <cstdio>
#include <vector>
#include <cmath>
#include <queue>
#include <deque>
#include <cmath>
#include <map>

using namespace std;
typedef long long ll;

const double inf=1e20;
const int maxn=2e5+10;
const int mod=1e9+7;

int n,m;

void f(int x){
    if(x/m!=0){
        f(x/m);
    }
    int xx=x%m;
    if(xx<10)
        printf("%d",xx);
    else if(xx>=10)printf("%c",xx-10+A);
}

int main(){
    m=2;
    while(scanf("%d",&n)!=EOF){
        if(n<0){
            printf("-");
            n=-n;
        }
        f(n);
        printf("
");
    }
    return 0;
}

 

以上是关于hdu 2051 Bitset(进制转换)的主要内容,如果未能解决你的问题,请参考以下文章

HDoj 2051 Bitset

HDU 4920 Matrix multiplication(bitset)

使用bitset实现二进制和十进制的相互转换

输入十进制整数num转化成二进制字符串输出

字符串二进制转换

C++中二进制字符串十六进制十进制之间的转换