#include<cstdio> void rec(int x){ if(x>2){ printf("((1+1)*"); rec(x/2); if(x%2==1)printf("+1"); printf(")"); }else if(x==2) printf("(1+1)"); else if(x==1) printf("1"); } int main(){ int t,x; scanf("%d", &t); while(t--){ scanf("%d",&x); rec(x); printf("\n"); } return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #include<cstdio> void rec(int x){ if(x>2){ printf("((1+1)*"); rec(x/2); if(x%2==1)printf("+1"); printf(")"); }else if(x==2) printf("(1+1)"); else if(x==1) printf("1"); } int main(){ int t,x; scanf("%d", &t); while(t--){ scanf("%d",&x); rec(x); printf("\n"); } return 0; } |