Board logo

標題: 函式的建立與執行 (一) [打印本頁]

作者: tonyh    時間: 2021-6-5 18:57     標題: 函式的建立與執行 (一)

自訂函式:
1. hello()
2. myPlus(int x,int y,int z)
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello()
  5. {
  6.     cout<<"HELLO!!"<<endl;
  7. }
  8. int myPlus(int x,int y,int z)
  9. {
  10.     return x+y+z;
  11. }
  12. int main()
  13. {
  14.     hello();
  15.     cout<<myPlus(2,5,1)<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello();
  5. int myPlus(int,int,int);
  6. int main()
  7. {
  8.     hello();
  9.     cout<<myPlus(2,5,1)<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
  13. void hello()
  14. {
  15.     cout<<"HELLO!!"<<endl;
  16. }
  17. int myPlus(int x,int y,int z)
  18. {
  19.     return x+y+z;
  20. }
複製代碼

作者: 余柏緯    時間: 2021-6-5 20:41

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello()
  5. {
  6.         cout<<"HELLO!"<<endl;
  7. }
  8. int myPlus(int x,int y,int z)
  9. {
  10.         return x+y+z;
  11. }
  12. int main()
  13. {
  14.         hello();
  15.         cout<<myPlus(5128514560000,4565645610000,4548790000)<<endl;
  16.         system("pause");
  17.         return 0;
  18. }
複製代碼

作者: 林鼎傑    時間: 2021-6-5 20:43

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello()
  5. {
  6.     cout<<"HELLO!!"<<endl;
  7. }
  8. int myPlus(int x,int y,int z)
  9. {
  10.     return x+y+z;
  11. }
  12. int main()
  13. {
  14.     hello();
  15.     cout<<myPlus(2,5,1)<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 朱奕祐    時間: 2021-6-5 20:43

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello()
  5. {
  6.         cout<<"HELLO!"<<endl;
  7. }
  8. int myPlus(int x,int y,int z)
  9. {
  10.         return x+y+z;
  11. }
  12. int main()
  13. {
  14.         hello();
  15.         cout<<myPlus(458445454,94878787,486666)<<endl;
  16.         system("pause");
  17.         return 0;
  18. }
複製代碼

作者: 黃子倢    時間: 2021-6-5 20:44

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello()
  5. {
  6.     cout<<"HELLO!!"<<endl;
  7. }
  8. int myplus(int x,int y,int z)
  9. {
  10.     return x+y+z;
  11. }
  12. int main()
  13. {
  14.         hello();
  15.         cout<<myplus(9,9,9)<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 俞成章    時間: 2021-6-5 20:45

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello()
  5. {
  6.         cout<<"HELLO!"<<endl;
  7. }
  8. int myPlus(int x,int y,int z)
  9. {
  10.         return x+y+z;
  11. }
  12. int main()
  13. {
  14.         hello();
  15.         cout<<myPlus(5128514560000,4565645610000,4548790000)<<endl;
  16.         system("pause");
  17.         return 0;
  18. }
複製代碼

作者: 王宇崴    時間: 2021-6-5 20:46

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello();
  5. int myPlus(int,int,int);
  6. int main()
  7. {
  8.     hello();
  9.     cout<<myPlus(2,5,1)<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
  13. void hello()
  14. {
  15.     cout<<"HELLO!!"<<endl;
  16. }
  17. int myPlus(int x,int y,int z)
  18. {
  19.     return x+y+z;
  20. }
複製代碼

作者: 許洧熏    時間: 2021-6-5 20:47

#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
    cout<<"HELLO!!"<<endl;
}
int myPlus(int x,int y,int z)
{
    return x+y+z;
}
int main()
{
    hello();
    cout<<myPlus(2,5,1)<<endl;
    system("pause");
    return 0;   
}
作者: 呂尚霖    時間: 2021-6-5 20:47

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello()
  5. {
  6.     cout<<"HI!"<<endl;
  7. }
  8. int myPlus(int x,int y,int z)
  9. {
  10.     return x+y+z;
  11. }
  12. int main()
  13. {
  14.     hello();
  15.     cout<<myPlus(2,5,1)<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 王秉鈞    時間: 2021-6-5 20:49

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     void hello()
  7.         {
  8.                 cout<<"Hello"<<endl;
  9.     }
  10.     int myPlus(int x,y,int z)
  11.     {
  12.             return x+y+z;
  13.     }
  14.     int main()
  15.     {
  16.             hello();
  17.             cout<<myPlus(2,5,1)<<endl;
  18.        
  19.        
  20.         }                                          
  21.     system("pause");   
  22.     return 0;
  23. }      
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2