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

返回列表