返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void str(string x){
  5.      for(int y=0 ; y<5 ; y++)
  6.              cout<<x<<endl;                  
  7.      }
  8. int main()
  9. {
  10.     string x;
  11.     cout<<" 請輸入一串文字 :  ";
  12.     cin>>x;
  13.     cout<<""<<endl;
  14.     str(x);
  15.     system("pause");
  16.     return 0;
  17. }
複製代碼

TOP

返回列表