Board logo

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

作者: tonyh    時間: 2018-7-23 19:49     標題: 函式的建立與執行 (一)

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

作者: 黃宇綸    時間: 2018-7-23 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. }
複製代碼

作者: 曾堂桂    時間: 2018-7-23 20:26

  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,3,4)<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 黃宇瑄    時間: 2018-7-23 20:26

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

作者: 盧佑芯    時間: 2018-7-23 20:27

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

作者: 李沛昂    時間: 2018-7-23 20:28

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

作者: 盧佑恩    時間: 2018-7-23 20:33

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

作者: 戴嘉禾    時間: 2018-7-23 20:33

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

作者: 洪翊展    時間: 2018-7-30 18:36

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




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

作者: 洪翊庭    時間: 2018-7-30 18:37

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





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