返回列表 發帖

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

本帖最後由 王瑞喻 於 2020-8-1 08:31 編輯

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

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void welcome(int x)
  5. {
  6.     ......................
  7. }

  8. int main()
  9. {
  10.     int x;
  11.     cin>>x;
  12.     welcome(x);
  13.     system("pause");
  14.     return 0;   
  15. }
複製代碼
Su Wa

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表