#include <stdio.h>
#include <conio.h>
int main()
{
int n,Bin=0,c=1;
scanf("%d",&n);
while(n>0)
{
Bin += (n%2)*c;
c *= 10;
n /= 2;
}
printf("%d",Bin);
getch();
return(0);
}
沒有留言:
張貼留言