返回列表 發帖

函數宣告 (二)

#include <cstdlib>
#include <iostream>
using namespace std;

// 定義函數
  1. int Test()
  2. {
  3.   return 100;
  4. }

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

  15.      
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

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

TOP

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

TOP

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

TOP

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

TOP

  1. #include <cstdlib>
  2. #include <iostream>
  3. using namespace std;
  4. int Test()
  5. {
  6.   return 870;
  7. }

  8. int main()
  9. {
  10.    cout << Test() << endl;

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

TOP

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

TOP

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

TOP

返回列表