Board logo

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

作者: 王瑞喻    時間: 2020-5-1 14:17     標題: 函式的建立與執行 (一)

本帖最後由 王瑞喻 於 2020-7-7 10:10 編輯

自訂函式:
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-2 10:44

此帖僅作者可見
作者: 洪藜芸    時間: 2020-5-2 10:44

此帖僅作者可見
作者: 鄭羽捷    時間: 2020-5-2 10:46

此帖僅作者可見
作者: 郭哲維    時間: 2020-5-2 10:46

此帖僅作者可見
作者: 陳宇柏    時間: 2020-5-2 10:47

此帖僅作者可見
作者: 曾宥程    時間: 2020-5-2 10:47

此帖僅作者可見
作者: 蔡少宇    時間: 2020-5-2 10:47

此帖僅作者可見
作者: 黃傳耀    時間: 2020-5-2 10:50

此帖僅作者可見
作者: 王翎璇    時間: 2020-5-2 11:03

此帖僅作者可見
作者: 郭哲維    時間: 2020-5-2 11:09

此帖僅作者可見
作者: 王建葦    時間: 2020-7-7 10:27

此帖僅作者可見




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