標題:
[作業] 函式的建立與執行 (五) - 罰寫小幫手
[打印本頁]
作者:
鄭繼威
時間:
2023-3-1 21:07
標題:
[作業] 函式的建立與執行 (五) - 罰寫小幫手
本帖最後由 鄭繼威 於 2023-3-8 19:43 編輯
試以自訂函式的方式,完成該程式。
譬如:自訂一個 print(string,int) 的函式
使用getline()可以讀整行
本帖隱藏的內容需要回復才可以瀏覽
罰寫小幫手.exe
作者:
黃裕恩
時間:
2023-3-4 11:19
本帖最後由 黃裕恩 於 2023-3-8 19:41 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
void print(string a,int b){
for(int i=1; i<=b; i++)
{
cout<<a<<endl;
}
}
int main(){
string a;
int b;
cout<<"罰寫內容: ";
getline(cin,a);
cout<<"罰寫次數: ";
cin>>b;
print(a,b);
system("pause");
return 0;
}
複製代碼
作者:
林劭澧
時間:
2023-3-4 14:40
本帖最後由 林劭澧 於 2023-3-8 19:42 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
void print(string a,int b)
{
for(int i=1; i<=b; i++)
{
cout<<a<<endl;
}
}
int main()
{
string a;
int b;
cout<<"罰寫內容: ";
getline(cin,a);
cout<<"罰寫次數: ";
cin>>b;
print(a,b);
system("pause");
return 0;
}
複製代碼
作者:
林劭杰
時間:
2023-3-4 14:50
#include<iostream>
#include<cstdlib>
using namespace std;
void print(string a,int b){
for(int i=1; i<=b; i++)
{
cout<<a<<endl;
}
}
int main(){
string a;
int b;
cout<<"罰寫內容: ";
cin>>a;
cout<<"罰寫次數:";
cin>>b;
print(a,b);
system("pause");
return 0;
}
複製代碼
作者:
李彣
時間:
2023-3-8 18:23
本帖最後由 李彣 於 2023-3-8 19:36 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
void print(string a,int b)
{
for(int i=1; i<=b; i++)
{
cout<<a<<endl;
}
}
int main()
{
string a;
int b;
cout<<"罰寫內容: ";
getline(cin,a);
cout<<"罰寫次數: ";
cin>>b;
print(a,b);
system("pause");
return 0;
}
複製代碼
作者:
林劭杰
時間:
2023-3-8 19:44
[code]#include<iostream>
#include<cstdlib>
using namespace std;
void print(string a,int b)
{
for(int i=1; i<=b; i++)
{
cout<<a<<endl;
}
}
int main()
{
string a;
int b;
cout<<"罰寫內容: ";
getline(cin,a);
cout<<"罰寫次數: ";
cin>>b;
print(a,b);
system("pause");
return 0;
}
[code]
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2