#38416: c++ ans


yp11151025@yphs.tp.edu.tw (803-23江紘宇)

學校 : 臺北市私立延平高級中學
編號 : 196814
來源 : [203.72.178.1]
最後登入時間 :
2024-01-15 16:38:36
a034. 二進位制轉換 | From: [203.72.178.1] | 發表日期 : 2023-11-20 15:09

include <bits/stdc++.h>

using namespace std;

int main() {

int x; while(cin >> x){ // 要輸入直到 EOF bool start = false; // 因為最一開始可能有很多 0 ,我們不能印到那個

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