Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 8457 Accepted Submission(s): 6552
#include <stdio.h>
int main()
{
int b[11], n, i;
while (~scanf("%d", &n))
{
i = 0;
while(n)
{
b[i++] = n % 2;
n /= 2;
}
i--;
while(i >= 0)
printf("%d", b[i--]);
printf("\n");
}
return 0;
}
原文:http://www.cnblogs.com/biong-blog/p/4421619.html