返回列表 發帖
  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

返回列表