巢狀迴圈 迴圈包覆著迴圈。
在解題時,我會將想法先列出來 再一個一個去假設變數..or loop 等等。
範例輸入
5
範例輸出
$$$$$$$$$$$$$$$
123456789101112131415
#include<bits/stdc++.h>using namespace std;int main () { int n; int i,j; cin >> n; for (i=1;i<n;i++) { for (j=0;j<i;j++) { cout << "$"; } cout << "\n"; }}