Board logo

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

作者: tonyh    時間: 2020-5-1 20:02     標題: 函式的建立與執行 (一)

自訂函式:
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. }
複製代碼

作者: 黃辰昊    時間: 2020-5-1 20:18

本帖最後由 黃辰昊 於 2020-5-1 20:21 編輯
  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. }
複製代碼

作者: 孫嘉駿    時間: 2020-5-1 20:21

  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. }
複製代碼

作者: 黃辰昊    時間: 2020-5-1 20:22

本帖最後由 黃辰昊 於 2020-5-1 20:23 編輯
  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. }
複製代碼

作者: 孫嘉駿    時間: 2020-5-1 20:22

  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. }
複製代碼

作者: 林政瑜    時間: 2020-5-1 20:22

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

作者: 黃宥華    時間: 2020-5-1 20:23

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

作者: 李宇澤    時間: 2020-5-1 20:23

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

  19. #include<iostream>
  20. #include<cstdlib>
  21. using namespace std;
  22. void hello();
  23. int myPlus(int,int,int);
  24. int main()
  25. {
  26.     hello();
  27.     cout<<myPlus(1,2,6)<<endl;
  28.     system("pause");
  29.     return 0;   
  30. }
  31. void hello()
  32. {
  33.     cout<<"喂!"<<endl;
  34. }
  35. int myPlus(int a,int b,int c)
  36. {
  37.     return a+b+c;
  38. }
複製代碼

作者: 董宸佑    時間: 2020-5-1 20:23

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;

  5. void PSG()
  6. {
  7.      cout<<"Hello!!!!!!!!!!!!!!!!!!!!!!!!!!!"<<endl;   
  8. }

  9. int QLS(int x, int y, int z)
  10. {
  11.     return x+y+z;
  12. }

  13. int main()
  14. {
  15.     PSG();
  16.     cout<<QLS(1,2,3)<<endl;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

作者: 林政瑜    時間: 2020-5-1 20:23

  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. }
複製代碼

作者: 黃宥華    時間: 2020-5-1 20:23

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello();
  5. int myPlus(int ,int ,int );

  6. int main()
  7. {
  8.    
  9.     hello();
  10.     cout<<myPlus(1,2,3)<<endl;
  11.     system("pause");
  12.     return 0;   
  13. }
  14. int myPlus(int c,int v,int b)
  15. {
  16.     return c+v+b;   
  17. }
  18. void hello(){
  19.     cout<<"Hello"<<endl;
  20. }
複製代碼

作者: 蔡忻霓    時間: 2020-5-1 20:25

  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. }
複製代碼

作者: 董宸佑    時間: 2020-5-1 20:25

  1. [code]#include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void PSG();
  5. int QLS(int,int,int);
  6. int main()
  7. {
  8.     PSG();
  9.     cout<<QLS(1,2,3)<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
  13. void PSG()
  14. {
  15.     cout<<"Hello!!!!!!!!!!!!!!!!!!!"<<endl;
  16. }
  17. int QLS(int x,int y,int z)
  18. {
  19.     return x+y+z;
  20. }
複製代碼
[/code]
作者: 蔡忻霓    時間: 2020-5-1 20:25

  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. }
複製代碼

作者: 陳宥穎    時間: 2020-5-1 20:34

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void Cout()
  5. {
  6. cout<<"hellow\n";     
  7. }
  8. int Plus(int a,int b,int c)
  9. {
  10.      return a+b+c;
  11. }
  12. void Plus2(int a,int b,int c)
  13. {
  14.   cout<<a+b+c;   
  15. }
  16. int main()
  17. {   
  18.      Cout();
  19.      cout<<Plus(4,3,6)<<endl;
  20.      Plus2(3,2,1);
  21.         system("pause");
  22.         return 0;
  23. }
複製代碼





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