標題:
[隨棠練習] 運用自訂函數 將輸入字串重複執行
[打印本頁]
作者:
周政輝
時間:
2016-8-13 11:53
標題:
[隨棠練習] 運用自訂函數 將輸入字串重複執行
試著做做看
使用者自定義一個字串
並透過函數的方式
顯示五遍出來
[attach]1713[/attach]
本帖隱藏的內容需要回復才可以瀏覽
作者:
蔡庭豪
時間:
2016-8-13 11:54
#include<iostream>
#include<cstdlib>
using namespace std;
void ff(string five){
for(int x=0;x<5;x++)
cout<<five;
}
int main(){
string five;
cout<<"請輸入字串"<<endl;
cin>>five;
ff(five);
system("pause");
return 0;
}
複製代碼
作者:
張健勳
時間:
2016-8-13 11:54
#include<iostream>
#include<cstdlib>
using namespace std;
void str(string x){
for(int y=0 ; y<5 ; y++)
cout<<x<<endl;
}
int main()
{
string x;
cout<<" 請輸入一串文字 : ";
cin>>x;
cout<<""<<endl;
str(x);
system("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2016-8-13 12:03
#include<iostream>
#include<cstdlib>
using namespace std;
void sun(string name)
{
for(int i = 0; i < 5; i++)
{
cout<<name;
}
}
int main()
{
cout<<"請輸入一句話:";
string name;
cin>>name;
cout<<"結果輸出:"<<endl;
sun(name);
system("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2016-8-17 15:54
本帖最後由 蔡季樺 於 2016-8-17 16:03 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
void more(string word,int time)
{
for(int i=0;i<time;i++)
cout<<word<<endl;
}
int main()
{
string word;
int time;
cout<<"請輸入一句話:";
cin>>word;
cout<<"請輸入想要重複的次數:";
cin>>time;
more(word,time);
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2