標題:
函式的建立與執行 (三)
[打印本頁]
作者:
鄭繼威
時間:
2023-9-6 01:50
標題:
函式的建立與執行 (三)
#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;
}
複製代碼
作者:
張絜晰
時間:
2023-9-8 20:12
此帖僅作者可見
作者:
邱品惟
時間:
2023-9-8 20:15
此帖僅作者可見
作者:
陳宣廷
時間:
2023-9-8 20:33
此帖僅作者可見
作者:
呂宗晉
時間:
2023-9-8 20:35
此帖僅作者可見
作者:
黃子豪
時間:
2023-9-8 20:35
此帖僅作者可見
作者:
李柏漢
時間:
2023-9-8 20:37
此帖僅作者可見
作者:
蔡沛倢
時間:
2023-9-8 20:38
此帖僅作者可見
作者:
得銓
時間:
2023-9-8 20:39
此帖僅作者可見
作者:
鄭繼威
時間:
2023-9-8 20:40
此帖僅作者可見
作者:
盧玄皓
時間:
2023-9-8 20:41
此帖僅作者可見
作者:
何權晉
時間:
2023-9-18 19:07
此帖僅作者可見
作者:
李宗儒
時間:
2024-1-17 18:49
此帖僅作者可見
作者:
朱奕祈
時間:
2024-4-27 18:10
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2