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