#11240: 輸 出短少怎辦?


mythzaizai (zaizai)

學校 : 臺北市立永春高級中學
編號 : 56063
來源 : [223.138.214.190]
最後登入時間 :
2018-12-05 02:01:16
a034. 二進位制轉換 | From: [114.43.253.168] | 發表日期 : 2016-08-06 10:45

#include <iostream>
#include <stdio.h>
#include <stdlib.h>


using namespace std;

int main(int argc, char** argv) {
int a,b,c;
int A[50000]={0};

cin >> a;


while(a>=2){
b=a%2;
a=a/2;
A[c]=b;
c++;
}

A[c]=a;

for(int i=c;i>=0;i--){
cout << A[i];
}

system("pause");
return 0;
}

 
ZeroJudge Forum