#24759: bitset + find_first_not_of 秒殺


fire5386 (becaidorz)

學校 : 國立清華大學
編號 : 115822
來源 : [140.114.253.147]
最後登入時間 :
2024-10-03 15:39:22
a034. 二進位制轉換 | From: [61.230.17.252] | 發表日期 : 2021-03-21 14:48

bitset<32> b;

while(cin >> n) {

b = n;

string s = b.to_string();

s.erase(0, s.find_first_not_of('0')); //移除前面多餘的0

cout << s << "\n";

}

 
ZeroJudge Forum