本帖最後由 李泳霖 於 2024-1-25 13:50 編輯
自定一個名叫 repeat 的方法,在主方法中呼叫它,它就能重複特定的句子數次。
譬如:若當我呼叫 repeat("歡迎光臨", 3),鸚鵡就會重複 "歡迎光臨" 3次。
P.S.
一、repeat函式負責接收兩個變數(1.為字串2.為整數)
二、main方法負責請使用者輸入1.要鸚鵡說什麼?2.說幾次
三、將資訊傳給repeat,請根據鸚鵡說的話,重複n次- #include<iostream>
- #include<cstdlib>
- using namespace std;
- void repeat(string str, int n)
- {
- for(int i=0; i<n; i++)
- cout<<str<<endl;
- }
- int main()
- {
- string str;
- int n;
- cout<<"想讓鸚鵡說什麼話? ";
- getline(cin, str);
- cout<<"說幾次? ";
- cin>>n;
- repeat(str, n);
- system("pause");
- return 0;
- }
複製代碼 |