本帖最後由 陳育霖 於 2023-7-6 20:33 編輯
請設計一程式,輸出菱形的圖案。
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- for(______________________)
- {
- for(______________________)
- {
- cout << " ";
- }
- for(______________________)
- {
- cout << "*";
- }
- cout << endl;
- }
- for(______________________)
- {
- for(______________________)
- {
- cout << " ";
- }
- for(______________________)
- {
- cout << "*";
- }
- cout << endl;
- }
- system ("pause");
- return 0;
- }
複製代碼本帖隱藏的內容需要回復才可以瀏覽 |