Board logo

標題: 函式的建立與執行 (四) - 罰寫小幫手 [打印本頁]

作者: 王瑞喻    時間: 2020-10-27 20:30     標題: 函式的建立與執行 (四) - 罰寫小幫手

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


作者: 駱顗安    時間: 2020-11-18 18:00

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void print(string x,int y)
  5. {
  6.     for(int i=0;i<y;i++)
  7.         cout<<x<<endl;
  8. }
  9. int main()
  10. {
  11.     int t;
  12.     char str[50];
  13.     cout<<"罰寫內容:";
  14.     cin.getline(str,50);
  15.     cout<<"罰寫字數:";
  16.     cin>>t;
  17.     print(str,t) ;
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2