返回列表 發帖
本帖最後由 蔡季樺 於 2016-8-17 16:03 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void more(string word,int time)
  5. {
  6.     for(int i=0;i<time;i++)   
  7.         cout<<word<<endl;

  8. }
  9. int main()
  10. {
  11.     string word;
  12.     int time;
  13.     cout<<"請輸入一句話:";
  14.     cin>>word;
  15.     cout<<"請輸入想要重複的次數:";
  16.     cin>>time;
  17.     more(word,time);
  18.     system("pause");         
  19.     return 0;
  20. }
複製代碼

TOP

返回列表