文章
4
粉丝
495
获赞
1
访问
36.7k
#include<stdio.h> int main(){ int a,b,pos; while(scanf("%d",&a)!=EOF){ pos=1,b=0; while(a!=0){ if(a%2==1) b+=pos; pos*=10; a/=2; } printf("%d\n",b); } return 0; }
登录后发布评论
暂无评论,来抢沙发