本帖最後由 鄭繼威 於 2022-6-11 11:43 編輯
函式的建立
1. 函式的建立與執行 (一)
2. [隨堂測驗] 函式的建立與執行 (二)
作業
多練習函式
請各位改寫函式的建立與執行 (一)讓其可以自行輸入想要加的數字(就像五則運算(二)可以讓使用者自行輸入)
輸出範例- #include<iostream>
- #include<cstdlib>
- using namespace std;
- //回傳型態 函式名字
- //myPlus函式
- int myPlus(int x,int y,int z){
- return x+y+z;
- }
- //主函式
- int main(){
- int a,b,c;
- cout<<"請輸入a:";
- cin>>a;
- cout<<"請輸入b:";
- cin>>b;
- cout<<"請輸入c:";
- cin>>c;
-
- cout<<"myPlus ="<<myPlus(a,b,c)<<endl;
-
- system("pause");
- return 0;
- }
複製代碼 |