[作業] 函式的建立與執行 (四) - 罰寫小幫手
本帖最後由 tonyh 於 2019-1-25 09:40 編輯
試以自訂函式的方式, 完成該程式.
譬如: 自訂一個 print(string,int) 的函式
- #include<iostream>
- #include<cstdlib>
- #include<string>
- using namespace std;
- void print(string str, int x)
- {
- for(int i=1; i<=x; i++)
- cout<<str<<endl;
- }
- int main()
- {
- string str;
- int x;
- cout<<"罰寫內容: ";
- getline(cin,str);
- cout<<"罰寫次數: ";
- cin>>x;
- print(str,x);
- system("pause");
- return 0;
- }
複製代碼 罰寫小幫手.exe |
附件:
您需要登錄才可以下載或查看附件。沒有帳號?註冊