標題:
函式的建立與執行 (三)
[打印本頁]
作者:
鄭繼威
時間:
2022-5-27 14:15
標題:
函式的建立與執行 (三)
本帖最後由 鄭繼威 於 2022-5-28 11:52 編輯
[attach]13090[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
void welcome4(int i){
cout<<"這裡是welcome4函式,我接到的參數是:"<<i<<endl;
}
void welcome3(){
cout<<"這裡是welcome3函式,準備再往下呼叫welcome4囉!順便傳參數"<<endl;
int i;
cout<<"你要傳多少過去?";
cin>>i;
cout<<"你要傳"<<i<<",準備再往下呼叫welcome4囉!"<<endl;
system("pause");
welcome4(i);
}
void welcome2(){
cout<<"這裡是welcome2函式,準備再往下呼叫welcome3囉!"<<endl;
system("pause");
welcome3();
}
void welcome1()
{
cout<<"這裡是welcome1函式,準備再往下呼叫welcome2囉!"<<endl;
system("pause");
welcome2();
}
int main()
{
cout<<"這裡是main函式,準備進入副程式囉!"<<endl;
system("pause");
welcome1();
return 0;
}
複製代碼
作者:
高鋐鈞
時間:
2022-5-28 09:58
#include<iostream>
#include<cstdlib>
using namespace std;
void welcome4(int i){
cout<<"這裡是welcome4函式,我接到的參數是:"<<i<<endl;
}
void welcome3(){
cout<<"這裡是welcome3函式,準備再往下呼叫welcome4囉!順便傳參數"<<endl;
int i;
cout<<"你要傳多少過去?";
cin>>i;
cout<<"你要傳"<<i<<",準備再往下呼叫welcome4囉!"<<endl;
system("pause");
welcome4(i);
}
void welcome2(){
cout<<"這裡是welcome2函式,準備再往下呼叫welcome3囉!"<<endl;
system("pause");
welcome3();
}
void welcome1()
{
cout<<"這裡是welcome1函式,準備再往下呼叫welcome2囉!"<<endl;
system("pause");
welcome2();
}
int main()
{
cout<<"這裡是main函式,準備進入副程式囉!"<<endl;
system("pause");
welcome1();
return 0;
}
複製代碼
作者:
曾善勤
時間:
2022-5-28 10:14
#include<iostream>
#include<cstdlib>
using namespace std;
void welcome4(int i){
cout<<"這裡是welcome4函式,我接到的參數是:"<<i<<endl;
}
void welcome3(){
cout<<"這裡是welcome3函式,準備再往下呼叫welcome4囉!順便傳參數"<<endl;
int i;
cout<<"你要傳多少過去?";
cin>>i;
cout<<"你要傳"<<i<<",準備再往下呼叫welcome4囉!"<<endl;
system("pause");
welcome4(i);
}
void welcome2(){
cout<<"這裡是welcome2函式,準備再往下呼叫welcome3囉!"<<endl;
system("pause");
welcome3();
}
void welcome1()
{
cout<<"這裡是welcome1函式,準備再往下呼叫welcome2囉!"<<endl;
system("pause");
welcome2();
}
int main()
{
cout<<"這裡是main函式,準備進入副程式囉!"<<endl;
system("pause");
welcome1();
return 0;
}
複製代碼
作者:
柳侑辰
時間:
2022-5-28 10:36
#include<iostream>
#include<cstdlib>
using namespace std;
void welcome4(int i)
{
cout<<"這裡是welcome4函式,我接到的參數是:"<<i<<endl;
}
void welcome3()
{
cout<<"這裡是welcome3函式,準備再往下呼叫welcome4囉!順便傳參數"<<endl;
int i;
cout<<"你要傳多少過去?";
cin>>i;
cout<<"你要傳"<<i<<",準備再往下呼叫welcome4囉!"<<endl;
system("pause");
welcome4(i);
}
void welcome2()
{
cout<<"這裡是welcome2函式,準備再往下呼叫welcome3囉!"<<endl;
system("pause");
welcome3();
}
void welcome1()
{
cout<<"這裡是welcome1函式,準備再往下呼叫welcome2囉!"<<endl;
system("pause");
welcome2();
}
int main()
{
cout<<"這裡是main函式,準備進入副程式囉!"<<endl;
system("pause");
welcome1();
return 0;
}
複製代碼
作者:
高昀昊
時間:
2022-5-28 11:57
#include<iostream>
#include<cstdlib>
using namespace std;
void welcome4(int x) {
cout<<"這裡是welcome4函式,我接到的參數是:"<<x<<endl;
}
void welcome3() {
cout<<"這裡是welcome3函式,準備再往下呼叫welcome4囉!順便傳參數"<<endl;
int x;
cout<<"你要傳多少過去?";
cin>>x;
cout<<"你要傳"<<x<<",準備再往下呼叫welcome4囉!"<<endl;
system("pause");
welcome4(x);
}
void welcome2() {
cout<<"這裡是welcome2函式,準備再往下呼叫welcome3囉!"<<endl;
system("pause");
welcome3();
}
void welcome1() {
cout<<"這裡是welcome1函式,準備再往下呼叫welcome2囉!"<<endl;
system("pause");
welcome2();
}
int main() {
cout<<"這裡是main函式,準備進入副程式囉!"<<endl;
system("pause");
welcome1();
return 0;
}
複製代碼
作者:
徐譽豈
時間:
2022-6-11 11:23
#include<iostream>
#include<cstdlib>
using namespace std;
void welcome4(int i){
cout<<"這裡是welcome4函式,我接到的參數是:"<<i<<endl;
}
void welcome3(){
cout<<"這裡是welcome3函式,準備再往下呼叫welcome4囉!順便傳參數"<<endl;
int i;
cout<<"你要傳多少過去?";
cin>>i;
cout<<"你要傳"<<i<<",準備再往下呼叫welcome4囉!"<<endl;
system("pause");
welcome4(i);
}
void welcome2(){
cout<<"這裡是welcome2函式,準備再往下呼叫welcome3囉!"<<endl;
system("pause");
welcome3();
}
void welcome1()
{
cout<<"這裡是welcome1函式,準備再往下呼叫welcome2囉!"<<endl;
system("pause");
welcome2();
}
int main()
{
cout<<"這裡是main函式,準備進入副程式囉!"<<endl;
system("pause");
welcome1();
return 0;
}
複製代碼
作者:
許宸瑀
時間:
2022-6-11 11:44
#include<iostream>
#include<cstdlib>
using namespace std;
void welcome4(int i){
cout<<"這裡是welcome4函式,我接到的參數是:"<<i<<endl;
}
void welcome3(){
cout<<"這裡是welcome3函式,準備再往下呼叫welcome4囉!順便傳參數"<<endl;
int i;
cout<<"你要傳多少過去?";
cin>>i;
cout<<"你要傳"<<i<<",準備再往下呼叫welcome4囉!"<<endl;
system("pause");
welcome4(i);
}
void welcome2(){
cout<<"這裡是welcome2函式,準備再往下呼叫welcome3囉!"<<endl;
system("pause");
welcome3();
}
void welcome1()
{
cout<<"這裡是welcome1函式,準備再往下呼叫welcome2囉!"<<endl;
system("pause");
welcome2();
}
int main()
{
cout<<"這裡是main函式,準備進入副程式囉!"<<endl;
system("pause");
welcome1();
return 0;
}
複製代碼
作者:
鍾易澄
時間:
2022-6-25 09:53
本帖最後由 鍾易澄 於 2022-6-25 10:01 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
void welcome4(int i){
cout<<"這裡是welcome4函式,我接到的參數是:"<<i<<endl;
}
void welcome3(){
cout<<"這裡是welcome3函式,準備再往下呼叫welcome4囉!順便傳參數"<<endl;
int i;
cout<<"你要傳多少過去?";
cin>>i;
cout<<"你要傳"<<i<<",準備再往下呼叫welcome4囉!"<<endl;
system("pause");
welcome4(i);
}
void welcome2(){
cout<<"這裡是welcome2函式,準備再往下呼叫welcome3囉!順便傳參數"<<endl;
system("pause");
welcome3();
}
void welcome1(){
cout<<"這裡是welcome1函式,準備再往下呼叫welcome2囉!順便傳參數"<<endl;
system("pause");
welcome2();
}
int main()
{
cout<<"這裡是main函式,準備進入副程式囉!"<<endl;
system("pause");
welcome1();
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2