#16846: Try Stack!!


szedicky770@gmail.com (Sze dicky)

學校 : 不指定學校
編號 : 70669
來源 : []
最後登入時間 :
2017-10-12 22:55:24
a034. 二進位制轉換 | From: [112.120.200.81] | 發表日期 : 2019-02-13 16:30

#include <iostream>
#include <vector>
#include <stack>

using namespace std;

int main()
{
int n;

stack<int> s;

while(cin >> n)
{
while(n > 0)
{
s.push((n % 2));
n /= 2;
}

while(!s.empty())
{
cout << s.top();
s.pop();
}

cout << endl;
}


return 0;
}

 
ZeroJudge Forum