#24342: 我不知道為什麼會RE


0520ryanyu (余秉侖)

學校 : 國立科學工業園區實驗高級中學
編號 : 122637
來源 : [49.216.160.18]
最後登入時間 :
2024-10-21 14:46:13
a034. 二進位制轉換 | From: [60.251.194.164] | 發表日期 : 2021-02-07 22:34

#include<bits/stdc++.h>

using namespace std;

int main(){

ios::sync_with_stdio(0);

cin.tie(0);cout.tie(0);

int N;

while(cin>>N){

int a[10] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};

int i;

for(i=0;N>=1;i++){

a[i] = N%2;

N/=2;

}

for(int j =i-1;j>=0;j--){    

        cout<<a[j];    

    }

    cout << '\n';

}

}

 

然後他說系統呼叫了abort函式!

 

 
ZeroJudge Forum