返回列表 發帖

函數宣告

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

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

返回列表