發布時間: Jan. 6, 2021, 1:19 a.m. 最後更新時間: Sept. 14, 2023, 11:15 p.m. 時間限制: 5000ms 記憶體限制: 256M
雞塊買了n塊積木,每塊上面分別標著1, 2, 3...n
今天雞塊把他們照編號往上疊在一塊鏡子上,他想知道看到的順序會長怎樣(雞塊眼睛很好,所以反著的數字他也能辨識成正的
challenge: 你能不用迴圈解這題嗎?
以下是範例程式碼,你可以直接複製過去修改
#include <iostream>
using namespace std;
//Do not modify above
void solve(int n) { // Complete this function
修改這裡來作答!!! 這個Function以外的都不要動
}
// Do not modify below
int main() {
int n;
cin >> n;
solve(n);
}
傳入的參數$n$為正整數$(1\le n\le 10^5)$
輸出所求
1
1
2
2 1 2
3
3 2 1 2 3
4
4 3 2 1 2 3 4