本帖最後由 李泳霖 於 2023-6-10 14:31 編輯
利用巢狀迴圈, 試做一個長為10顆*, 高為4顆*, 之平行四邊形, 排列如下圖:
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- for(_____________)
- {
- for(_____________)
- {
- cout<<" ";
- }
- for(_____________)
- {
- cout<<"*";
- }
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |