返回列表 發帖

函式的建立與執行 (一)

自訂函式:
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. }
複製代碼
第一段程式碼的寫法較為簡潔,因為不需要提前宣告函式。
第二段程式碼則是更為正式的寫法,適合在大型專案中使用,因為它能夠提高程式碼的可讀性和結構性。

  1. #include<bits/stdc++.h>
  2. using namespace std;

  3. void hello()
  4. {
  5.     cout<<"Hello!"<<endl;
  6. }
  7. int myPlus(int x,int y,int z)
  8. {
  9.     return x+y+z;
  10. }
  11. int main()
  12. {
  13.     hello();
  14.     cout<<myPlus(2,5,1)<<endl;
  15. }
複製代碼

TOP

返回列表