#include<bits/stdc++.h> using namespace std; int n; void pisz(int n, string s){ int d = 0; while(n > 0) { int c = n % 9; if(c > 1)cout << c <<'['; if(c > 0) { for(int i = 0; i < d;i++) cout <<"9["; cout << s; for(int i = 0; i < d;i++) cout <<"]"; } if (c > 1) cout <<"]"; d++; n = n/9; } } int main() { ios_base::sync_with_stdio(0); int i; cin >> n; for(int i = n; i > 0;i--) { pisz(i, "A"); pisz(i-1, "EC"); cout << "E"; } pisz(n,"C"); 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 25 26 27 28 29 30 31 32 33 34 35 36 | #include<bits/stdc++.h> using namespace std; int n; void pisz(int n, string s){ int d = 0; while(n > 0) { int c = n % 9; if(c > 1)cout << c <<'['; if(c > 0) { for(int i = 0; i < d;i++) cout <<"9["; cout << s; for(int i = 0; i < d;i++) cout <<"]"; } if (c > 1) cout <<"]"; d++; n = n/9; } } int main() { ios_base::sync_with_stdio(0); int i; cin >> n; for(int i = n; i > 0;i--) { pisz(i, "A"); pisz(i-1, "EC"); cout << "E"; } pisz(n,"C"); return 0; } |