本帖最後由 陳育霖 於 2024-7-18 18:07 編輯
利用巢狀迴圈, 將符號*整齊排列成如下之菱形:
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- for(______________)
- {
- if(_______)
- {
- for(______________)
- {
- cout << " ";
- }
- for(______________)
- {
- cout << "*";
- }
- }
- else
- {
- for(______________)
- {
- cout << " ";
- }
- for(______________)
- {
- cout << "*";
- }
- }
- cout << endl;
- }
- return 0;
- }
複製代碼本帖隱藏的內容需要回復才可以瀏覽 |