HDoj 2051 Bitset

Posted wzmm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDoj 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
 

 

Author
8600 && xhd
 

 

Source
 

 

 

 

Recommend
linle   |   We have carefully selected several similar problems for you:  2055 2052 2053 2054 2071 
 
 
 
 
C语言代码如下:
#include<stdio.h>
int main()
{
    int n=0;
    int l=0;
    char s[20];
    while(scanf("%d",&n)!=EOF)
    {
        l=0;
        while(n!=0)
        {
            s[l++]=n%2;
            n/=2;
        }
        for(int i=l-1;i>=0;i--)
            printf("%d",s[i]);
        printf("
");
    }
}

 

 

以上是关于HDoj 2051 Bitset的主要内容,如果未能解决你的问题,请参考以下文章

[HDOJ5890]Eighty seven(暴力,dp,bitset)

hdu 2051

luogu P2051 [AHOI2009]中国象棋

luogu P2051 [AHOI2009]中国象棋

码蹄集 - MT2051 · excel的烦恼

烧写程序时提示文件末地址超过芯片容量,单片机AT89c2051,写的程序代码无论多少烧写时都出现一样的问题