Code:
#include<iostream> using namespace std; int main() { int n,a[55]; cin >> n; if(n<3) cout << "-1" << endl; else { for(int i = n; i>0; i--) cout << i << " "; cout << endl; } return 0; }
loop integer variable i from 1 to n - 1 loop integer variable j from i to n - 1 if (aj > aj + 1), then swap the values of elements aj and aj + 1
1
-1
#include<iostream> using namespace std; int main() { int n,a[55]; cin >> n; if(n<3) cout << "-1" << endl; else { for(int i = n; i>0; i--) cout << i << " "; cout << endl; } return 0; }
Không có nhận xét nào:
Đăng nhận xét