#include<iostream>
using namespace std;
int n,x;
void wyswietl(int& x){
if(x==1){
cout<<"1";
return;
}
else if(x==2){
cout<<"1+1";
return;
}
else if(x==3){
cout<<"1+1+1";
return;
}
else if(x%2==0){
cout<<"(1+1)*(";
x/=2;
wyswietl(x);
cout<<")";
return;
}else{
cout<<"1+(1+1)*(";
x/=2;
wyswietl(x);
cout<<")";
return;
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(NULL);
cin>>n;
for(int i=0;i<n;++i){
cin>>x;
wyswietl(x);
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 38 39 40 | #include<iostream> using namespace std; int n,x; void wyswietl(int& x){ if(x==1){ cout<<"1"; return; } else if(x==2){ cout<<"1+1"; return; } else if(x==3){ cout<<"1+1+1"; return; } else if(x%2==0){ cout<<"(1+1)*("; x/=2; wyswietl(x); cout<<")"; return; }else{ cout<<"1+(1+1)*("; x/=2; wyswietl(x); cout<<")"; return; } } int main(){ ios::sync_with_stdio(false); cin.tie(NULL); cin>>n; for(int i=0;i<n;++i){ cin>>x; wyswietl(x); cout<<"\n"; } } |
English