#include<iostream>
#include<cmath>
using namespace std;
char temp[255];
int x, i, a, n;
int main()
{
while(cin>>x){
i=0;
n=0;
for(x>=0 ;i++;){
if(x%2==1)
temp[i]=1;
else
temp[i]=0;
x=x/2;
if(x==0){
for(n<=i ;n++;){
temp[n]=temp[n]*pow(10,n);
a+=temp[n];
}
cout<<a<<endl;
}
}
}
return 0;
}
WA (line:1)
輸出短少
您共輸出 0 行。
請問是錯在哪裡呢??