文章
117
粉丝
69
获赞
829
访问
90.4k
#include <bits/stdc++.h> using namespace std; int x; string res; int main() { cin >> x; while(x) { res.push_back((x & 1) + '0'); x >>= 1; } reverse(res.begin(), res.end()); cout << res; return 0; }
登录后发布评论
暂无评论,来抢沙发