#include "bits/stdc++.h"
using namespace std;
int t,x,n;
int main()
{
cin>>t;
while(t--)
{
n=0;
cin>>x;
while(x>0)
{
if((x&1)==1)
{
if((x>>1)>0)
{
cout<<"(1+(1+1)*";
n++;
}
else
{
cout<<"1";
while(n--)
cout<<")";
}
x=x>>1;
}
else
{
cout<<"(1+1)*";
x=x>>1;
}
}
cout<<"\n";
}
}
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | #include "bits/stdc++.h" using namespace std; int t,x,n; int main() { cin>>t; while(t--) { n=0; cin>>x; while(x>0) { if((x&1)==1) { if((x>>1)>0) { cout<<"(1+(1+1)*"; n++; } else { cout<<"1"; while(n--) cout<<")"; } x=x>>1; } else { cout<<"(1+1)*"; x=x>>1; } } cout<<"\n"; } } |
English