返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void sun(string name)
  5. {
  6.    
  7.     for(int i = 0; i < 5; i++)
  8.     {
  9.         cout<<name;     
  10.     }
  11. }
  12. int main()
  13. {  
  14.     cout<<"請輸入一句話:";  
  15.     string name;
  16.     cin>>name;
  17.     cout<<"結果輸出:"<<endl;
  18.     sun(name);
  19.     system("pause");
  20.     return 0;
  21. }
複製代碼

TOP

返回列表