Board logo

標題: 函數宣告 [打印本頁]

作者: 周政輝    時間: 2018-6-2 13:51     標題: 函數宣告

  1. [hide]#include <cstdlib>
  2. #include <iostream>
  3. using namespace std;

  4. // 定義函數
  5. void Test()
  6. {
  7.   cout << "Hello World" << endl;
  8. }

  9. int main() // 主函數
  10. {
  11.     // function  函數/方法
  12.      
  13.     // 宣告函數
  14.     // 有沒有回傳值(void 不回傳任何東西) 函數的名字 (參數)  {}
  15.      
  16.     // 呼叫函數
  17.     Test();

  18.      
  19.     system("pause");
  20.     return 0;
  21. }
  22. [/hide]
複製代碼

作者: 王駿愷    時間: 2018-6-2 13:53

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void test()
  5. {
  6. cout<<"hello world"<<endl;   
  7. }
  8. int main()
  9. {
  10.     test();
  11.    
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

作者: 吳秉翰    時間: 2018-6-2 13:53

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void Test()
  5. {
  6.   cout<<"hello"<<endl;     
  7. }
  8. int main()
  9. {
  10.   Test();
  11.   system("pause");
  12.   return 0;
  13. }
複製代碼

作者: 戴嘉禾    時間: 2018-6-2 13:55

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void test()
  5. {
  6. cout<<"傻眼貓咪"<<endl;     
  7. }
  8. int main()
  9. {
  10.     test();
  11.     system("pause") ;
  12.     return 0;
  13. }
複製代碼

作者: 顏詢    時間: 2018-6-2 13:55

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


  4. void Test()
  5. {
  6.   cout << "Hello World" << endl;
  7. }

  8. int main()
  9. {
  10.   
  11.     Test();

  12.      
  13.     system("pause");
  14.     return 0;
  15. }
複製代碼

作者: 湯東緯    時間: 2018-6-2 13:55

  1. #include <cstdlib>
  2. #include <iostream>
  3. using namespace std;
  4. void Test()
  5. {
  6.   cout << "周老師好帥" << endl;
  7. }

  8. int main()
  9. {
  10.     Test();
  11.          
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼

作者: 林峻安    時間: 2018-6-2 13:55

  1. #include <cstdlib>
  2. #include <iostream>
  3. using namespace std;
  4. void test()
  5. {
  6.      cout<<"哈"<<endl;
  7. }
  8. int main()
  9. {
  10.     test();
  11.     system("pause");
  12.     return 0;
  13. }
複製代碼

作者: 黃安立    時間: 2018-6-2 14:01

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


  4. void Test()
  5. {
  6.   cout << "Hello World" << endl;
  7. }

  8. int main()
  9. {
  10.     Test();

  11.      
  12.     system("pause");
  13.     return 0;
  14. }
複製代碼





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