本帖最後由 鄭繼威 於 2022-6-11 11:18 編輯
自訂函式:
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;
- }
複製代碼 |