#include <iostream> using namespace std; int main (){ std::ios_base::sync_with_stdio(false); int t; cin>>t; for(int j=0; j<t; j++){ int y; cin>>y; int najw; for(int k=30; k>=0; k--){ if((y>>k)&1){ najw=k; break; } } int s=0; //cout<<"najw= "<<najw; for(int i=0; i<31; i++){ s+=(y>>i)&1; } for(int i=0; i<s-1; i++){ cout<<"("; } cout<<"(1+1)"; if((y>>(najw-1))&1){ cout<<"+1)"; } for(int i=najw-2; i>=0; i--){ cout<<"*(1+1)"; if((y>>i)&1){ cout<<"+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 37 | #include <iostream> using namespace std; int main (){ std::ios_base::sync_with_stdio(false); int t; cin>>t; for(int j=0; j<t; j++){ int y; cin>>y; int najw; for(int k=30; k>=0; k--){ if((y>>k)&1){ najw=k; break; } } int s=0; //cout<<"najw= "<<najw; for(int i=0; i<31; i++){ s+=(y>>i)&1; } for(int i=0; i<s-1; i++){ cout<<"("; } cout<<"(1+1)"; if((y>>(najw-1))&1){ cout<<"+1)"; } for(int i=najw-2; i>=0; i--){ cout<<"*(1+1)"; if((y>>i)&1){ cout<<"+1)"; } } cout<<"\n"; } } |