#44335: .......


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

School : 臺北市私立延平高級中學
ID : 246062
IP address : [203.72.178.1]
Last Login :
2024-12-19 16:26:19
a034. 二進位制轉換 | From: [203.72.178.1] | Post Date : 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