標題:
[隨堂測驗] 函式的建立與執行 - 罰寫小幫手
[打印本頁]
作者:
周政輝
時間:
2018-6-9 13:58
標題:
[隨堂測驗] 函式的建立與執行 - 罰寫小幫手
試以自訂函式的方式, 完成該程式.
譬如: 自訂一個 print(string,int) 的函式
[attach]4224[/attach]
作者:
鄭楀諺
時間:
2018-6-9 14:15
#include <cstdlib>
#include <iostream>
using namespace std;
void print(string sentence,int times)
{
for(int i=1;i<=times;i++)
{
cout<<sentence<<endl;
}
}
int main()
{
string sentence;
int times=0;
cout<<"請輸入罰寫內容:";
cin>>sentence;
cout<<"請輸入次數:";
cin>>times;
print(sentence,times);
system("pause");
return 0;
}
複製代碼
作者:
吳秉翰
時間:
2018-6-9 14:19
#include<iostream>
#include<cstdlib>
using namespace std;
void page(string sentence,int times)
{
for(int i=0;i<times;i++)
{
cout<<sentence<<endl;
}
}
int main()
{
string sentence;
int times=0;
cout<<"罰寫內容?"<<endl;
cin>>sentence;
cout<<"次數?"<<endl;
cin>>times;
page(sentence,times);
system("pause");
return 0;
}
複製代碼
作者:
戴嘉禾
時間:
2018-6-9 14:20
#include<iostream>
#include<cstdlib>
using namespace std;
void test(string w,int num)
{
for(int i=1;i<=num;i++)
{
cout<<w<<endl;
}
}
int main()
{
int num;
string w;
cout<<"罰寫內容:";
cin>>w;
cout<<"罰寫次數:";
cin>>num;
test(w,num);
system("pause");
return 0;
}
複製代碼
作者:
林峻安
時間:
2018-6-9 14:31
#include<iostream>
#include<cstdlib>
using namespace std;
void print(string str,int z)
{
for(int i=0;i<=z;i++)
{
cout<<str<<endl;
}
}
int main()
{
string str;
int z=0;
cout<<"罰寫小幫手"<<endl;
cout<<"請輸入罰寫內容";
cin>>str;
cout<<"次數";
cin>>z;
print(str,z);
system("pause");
return 0;
}
複製代碼
作者:
黃安立
時間:
2018-6-9 14:43
#include<iostream>
#include<cstdlib>
using namespace std;
void print(string str,int g)
{
for(int i=0;i<=z;i++)
{
cout<<str<<endl;
}
}
int main()
{
string str;
int g=0;
cout<<"罰寫小幫手"<<endl;
cout<<"罰寫內容:";
cin>>str;
cout<<"次數";
cin>>g;
print(str,g);
system("pause");
return 0;
}
複製代碼
作者:
湯東緯
時間:
2018-6-9 14:45
#include<iostream>
#include<cstdlib>
using namespace std;
void print(string str,int num)
{
for(int i=0;i<=num;i++)
{
cout<<str<<endl;
}
}
int main()
{
string str;
int num=0;
cout<<"罰寫小幫手"<<endl;
cout<<"請輸入罰寫內容";
cin>>str;
cout<<"次數";
cin>>num;
print(str,num);
system("pause");
return 0;
}
複製代碼
作者:
林峻安
時間:
2018-6-9 14:58
作者:
顏詢
時間:
2018-6-9 15:27
#include <cstdlib>
#include <iostream>
using namespace std;
void print(string sentence,int times)
{
for(int i=1;i<=times;i++)
{
cout<<sentence<<endl;
}
}
int main()
{
string sentence;
int times=0;
cout<<"請輸入罰寫內容:";
cin>>sentence;
cout<<"請輸入次數:";
cin>>times;
print(sentence,times);
system("pause");
return 0;
}
複製代碼
作者:
王駿愷
時間:
2018-6-10 11:25
#include<iostream>
#include<cstdlib>
using namespace std;
void test(string sentence,int times)
{
for(int i=0;i<times;i++)
{
cout<<sentence<<endl;
}
}
int main()
{
string sentence;int times=0;
cout<<"請輸入罰寫內容"<<endl;
cin>>sentence;
cout<<"請輸入次數"<<endl;
cin>>times;
test(sentence,times);
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2