返回列表 發帖

函式的建立與執行 (三)

試以自訂函式的方式, 設計一個專門顯示 "歡迎光臨" 的程式, 只需輸入次數, 即可重複顯示.
執行畫面如下:
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. void tri(int x)
  6. {
  7.      for(int i=1;i<=x;i++)
  8.      {
  9.            cout<<"歡迎光臨"<<endl;
  10.      }   
  11.       
  12. }
  13. int main()
  14. {
  15.     int a;
  16.     cout<<"請輸入次數:";
  17.     cin>>a;
  18.     tri(a);
  19.     system("pause");  
  20.     return 0;   
  21. }
複製代碼

TOP

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

TOP

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

TOP

  1. #include<iostream>   
  2. #include<cstdlib>      
  3. using namespace std;
  4. void bp(int);
  5. int main()   
  6. {
  7.    int n;
  8.    cout<<"請輸入次數:"<<endl;
  9.    cin>>n;
  10.    bp(n);
  11.     system("pause");   
  12.     return 0;            


  13. }

  14. void bp(int n)
  15. {
  16.      for(int j=1;j<=n;j++)
  17.      {
  18.       cout<<"◆歡迎光臨~~~◆" <<endl;     
  19.      }


  20. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. void re(int a)
  6. {
  7.     for(int i=1;i<=a;i++)
  8.     {
  9.             cout<<"歡迎光鈴~~~"<<endl;
  10.     }
  11. }
  12. int main()
  13. {

  14.    int a;
  15.    cout<<"輸入次數:";
  16.    cin>>a;
  17.    re(a);
  18.    
  19.   
  20.   
  21.   system("pause");  
  22.   return 0;  
  23. }

複製代碼

TOP

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

TOP

返回列表