本帖最後由 李泳霖 於 2024-8-22 14:46 編輯
自定一個名叫 repeat 的方法,在主方法中呼叫它,它就能重複特定的句子數次。
譬如:若當我呼叫 repeat("歡迎光臨", 3),鸚鵡就會重複 "歡迎光臨" 3次。
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- _____ repeat(_____,______)
- {
-
- }
- int main()
- {
- string str;
- int n;
- cout<<"想讓鸚鵡說什麼話? ";
- ____________
- cout<<"說幾次? ";
- ____________
- repeat(____, ____);
- system("pause");
- return 0;
- }
複製代碼 |