#includemain(){ int i,x,a[40]={0}; scanf("%d",&x); for(i=0;x>0;i++) { a[i]=x%2; x/=2; } for(i--;i>=0;i--) printf("%d",a[i]);}
c语言中通过控制符直接可以实现。