#44335: .......


yp11251094@yphs.tp.edu.tw (80345)

學校 : 臺北市私立延平高級中學
編號 : 246062
來源 : [203.72.178.1]
最後登入時間 :
2024-06-20 13:46:51
a034. 二進位制轉換 | From: [203.72.178.1] | 發表日期 : 2024-11-28 16:09

#include <bits/stdc++.h>
using namespace std;
int main() {
    int x;
    while(cin >> x){
        bool start = false;
        for(int i = 31;i >= 0;i--) {
            if((x >> i) & 1) {
                if(!start) start = true;
            }
            if(start) cout << ((x >> i) & 1);
        }
        cout << '\n';
    }
}
 
ZeroJudge Forum