返回列表 發帖

[隨堂測驗] 函式的建立與執行 (二)

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



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

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello()
  5. {
  6.     cout<<"歡迎光臨!"<<endl;
  7. }
  8. int main()
  9. {
  10.     int t;
  11.     cin>>t;
  12.     for(int i=1; i<=t; i++)
  13.     {
  14.         hello();
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

返回列表