题解 | #二进制数#

二进制数

https://www.nowcoder.com/practice/103dd589fed14457a673c613d8de3841

#include <iostream>
#include <bitset>
#include <string>
#define MAXLEN 200
using namespace std;
int main(){
    for(unsigned int x; cin >> x;){
        bitset<MAXLEN> b = x;
        string res = b.to_string();
        res.erase(0,res.find_first_not_of('0'));
        cout << res <<endl;
    }
    return 0;
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
昨天 16:28
点赞 评论 收藏
分享
offer多多的六边形战士很无语:看了你的博客,感觉挺不错的,可以把你的访问量和粉丝数在简历里提一下,闪光点(仅个人意见)
点赞 评论 收藏
分享
10-15 09:13
已编辑
天津大学 soc前端设计
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务