#12759: 用string放二進位結果


tntchn (tntchn)

學校 : 國立成功大學
編號 : 40564
來源 : [220.130.183.235]
最後登入時間 :
2024-08-09 21:19:28
a034. 二進位制轉換 | From: [140.116.109.140] | 發表日期 : 2017-09-27 04:26

#include <iostream>
#include <string>
using namespace std;

int main() {
    string bin;
    int dec;
    while (cin>>dec) {
        bin = "";
        while (dec > 0) {
            bin.insert(bin.begin(),dec%2+'0');
            dec /= 2;
        }
        cout << bin << endl;
    }
    return 0;
}

 
ZeroJudge Forum