標題:
函式的建立與執行 (一)
[打印本頁]
作者:
鄭繼威
時間:
2023-9-6 01:49
標題:
函式的建立與執行 (一)
宣告變數->變數型態 變數名字
int a
宣告函式->回傳型態 函式名字()
回傳型態
(沒有回傳void)
void hello()
int add()
自訂函式:
1. hello()
2. myPlus(int x,int y,int z)
Tip:先定義才能呼叫
定義時小心
保留字
(給變數取名字的時候也是)
第一階段hello()
#include<iostream>
#include<cstdlib>
using namespace std;
//hello函式
void hello(){
cout<<"這是hello函式"<<endl;
}
//宣告變數->變數型態 變數名字
//int a
//宣告函式->回傳型態 函式名字()
//主函式
int main(){
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
第二階段myPlus(int x,int y,int z)
#include<iostream>
#include<cstdlib>
using namespace std;
//hello函式
void hello(){
cout<<"這是hello函式"<<endl;
}
//宣告變數->變數型態 變數名字
//int a
//宣告函式->回傳型態 函式名字()
//int myPlus
//沒有回傳值時 void
int myPlus(int x,int y,int z){
return x+y+z;
}
//主函式
int main(){
cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
cout<<"這是主函式的hello"<<endl;
hello();
system("pause");
return 0;
}
複製代碼
作者:
陳宣廷
時間:
2023-9-8 19:42
此帖僅作者可見
作者:
得銓
時間:
2023-9-8 19:43
此帖僅作者可見
作者:
黃子豪
時間:
2023-9-8 19:43
此帖僅作者可見
作者:
邱品惟
時間:
2023-9-8 19:45
此帖僅作者可見
作者:
呂宗晉
時間:
2023-9-8 19:45
此帖僅作者可見
作者:
蔡沛倢
時間:
2023-9-8 19:46
此帖僅作者可見
作者:
盧玄皓
時間:
2023-9-8 19:46
此帖僅作者可見
作者:
張絜晰
時間:
2023-9-8 19:48
此帖僅作者可見
作者:
李柏漢
時間:
2023-9-8 20:02
此帖僅作者可見
作者:
黃品禎
時間:
2023-9-9 16:12
此帖僅作者可見
作者:
何權晉
時間:
2023-9-18 18:48
此帖僅作者可見
作者:
李宗儒
時間:
2024-1-17 18:16
此帖僅作者可見
作者:
朱奕祈
時間:
2024-4-27 17:55
此帖僅作者可見
作者:
朱奕祈
時間:
2024-4-27 17:57
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2