返回列表 發帖

[作業] 函式的建立與執行 (四) - 罰寫小幫手

本帖最後由 tonyh 於 2019-1-25 09:40 編輯

試以自訂函式的方式, 完成該程式.
譬如: 自訂一個 print(string,int) 的函式

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. using namespace std;
  5. void print(string str, int x)
  6. {
  7.      for(int i=1; i<=x; i++)
  8.          cout<<str<<endl;
  9. }
  10. int main()
  11. {
  12.     string str;
  13.     int x;
  14.     cout<<"罰寫內容: ";
  15.     getline(cin,str);
  16.     cout<<"罰寫次數: ";
  17.     cin>>x;
  18.     print(str,x);
  19.     system("pause");
  20.     return 0;
  21. }
複製代碼
罰寫小幫手.exe
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表