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

TOP

返回列表