Board logo

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

作者: 陳曜誌    時間: 2024-8-10 15:08     標題: 函式的建立與執行 (二)

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



本帖隱藏的內容需要回復才可以瀏覽

作者: 李昱辰    時間: 2024-8-19 19:20

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. void welcome(int x)
  4. {
  5.     for(int i=0;i<x;i++)
  6.     {
  7.         cout<<"歡迎光臨!"<<endl;
  8.     }
  9. }
  10. int main()
  11. {
  12.     int x;
  13.     cin>>x;
  14.     welcome(x);
  15. }
複製代碼





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