本帖最後由 鄭繼威 於 2023-12-4 19:48 編輯
就像小星星 3-平行四邊形1,只是倒過來
利用巢狀迴圈, 試做一個長為10顆*, 高為4顆*, 之平行四邊形, 排列如下圖:
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- //決定層數
- for(_____________)
- {
- //決定空格數
- for(_____________)
- {
- cout<<" ";
- }
- //決定*數
- for(_____________)
- {
- cout<<"*";
- }
- cout<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼本帖隱藏的內容需要積分高於 1 才可瀏覽 |