#include<bits/stdc++.h>
using namespace std;
void solve() {
int x, d = 0;
cin >> x;
while(x != 0) {
if(x == 2) {
cout << "(1+1)";
x = 0;
}
else if(x%2 == 0) {
cout << "((1+1)";
d++;
x /= 2;
if(x != 0) cout << "*";
}
else if(x%2 == 1 && x != 1) {
cout << "(1+";
d++;
x--;
}
else if(x == 1) {
cout << "1";
x--;
}
}
while(d--)cout << ")";
cout << '\n';
}
int main() {
int t;
cin >> t;
while(t--)solve();
}
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<bits/stdc++.h> using namespace std; void solve() { int x, d = 0; cin >> x; while(x != 0) { if(x == 2) { cout << "(1+1)"; x = 0; } else if(x%2 == 0) { cout << "((1+1)"; d++; x /= 2; if(x != 0) cout << "*"; } else if(x%2 == 1 && x != 1) { cout << "(1+"; d++; x--; } else if(x == 1) { cout << "1"; x--; } } while(d--)cout << ")"; cout << '\n'; } int main() { int t; cin >> t; while(t--)solve(); } |
English