返回列表 發帖

[隨棠練習] 運用自訂函數 將輸入字串重複執行

試著做做看
使用者自定義一個字串
並透過函數的方式
顯示五遍出來



本帖隱藏的內容需要回復才可以瀏覽
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  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

  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

  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

本帖最後由 蔡季樺 於 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

返回列表