#21617: c++ bitset


ivy14285@gmail.com (tytytyty)

學校 : 高雄市立高雄女子高級中學
編號 : 82616
來源 : [42.72.190.98]
最後登入時間 :
2023-12-25 16:08:07
a034. 二進位制轉換 | From: [59.127.225.183] | 發表日期 : 2020-06-28 10:23

#include<bits/stdc++.h>

using namespace std;

int main(){

    ios_base::sync_with_stdio(0);cout.tie(0);cin.tie(0);

    int x;

    while(cin>>x){

        bitset<32> b(x);

        cout<<b.to_string().substr(__builtin_clz(x))<<endl;

    }

}

 

 
ZeroJudge Forum