Board logo

標題: [隨堂測驗] 函式的建立與執行 (二) [打印本頁]

作者: 鄭繼威    時間: 2023-3-1 18:59     標題: [隨堂測驗] 函式的建立與執行 (二)

本帖最後由 鄭繼威 於 2023-3-1 20:52 編輯

試以自訂函式的方式, 設計一個專門顯示 "歡迎光臨" 的程式, 只需輸入次數, 即可重複顯示.
執行畫面如下:

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void welcome(int x)
  5. {
  6.     for(int i=1; i<=x; i++)
  7.         cout<<"歡迎光臨!"<<endl;
  8. }

  9. int main()
  10. {
  11.     int x;
  12.     cout<<"你要輸出幾次:";
  13.     cin>>x;
  14.     welcome(x);
  15.     system("pause");
  16.     return 0;   
  17. }
複製代碼

作者: 黃裕恩    時間: 2023-3-1 20:48

此帖僅作者可見
作者: 林劭澧    時間: 2023-3-1 20:52

此帖僅作者可見
作者: 林劭杰    時間: 2023-3-1 20:54

此帖僅作者可見
作者: 李彣    時間: 2023-3-1 20:54

此帖僅作者可見




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