返回列表 發帖

2022/05/21 課程重點

本帖最後由 鄭繼威 於 2022-6-11 11:43 編輯

函式的建立
1. 函式的建立與執行 (一)
2. [隨堂測驗] 函式的建立與執行 (二)

作業
多練習函式
請各位改寫函式的建立與執行 (一)讓其可以自行輸入想要加的數字(就像五則運算(二)可以讓使用者自行輸入)
輸出範例
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. //回傳型態 函式名字
  5. //myPlus函式
  6. int myPlus(int x,int y,int z){
  7.         return x+y+z;
  8. }

  9. //主函式
  10. int main(){
  11.         int a,b,c;
  12.         cout<<"請輸入a:";
  13.         cin>>a;
  14.         cout<<"請輸入b:";
  15.         cin>>b;
  16.         cout<<"請輸入c:";
  17.         cin>>c;
  18.        
  19.         cout<<"myPlus ="<<myPlus(a,b,c)<<endl;
  20.        
  21.         system("pause");
  22.         return 0;
  23. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表