返回列表 發帖

自訂函數

自訂義一個函數,並且看能否能顯示在螢幕上
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<time.h>  
  4. using namespace std;

  5. // 函數(方法)

  6. // 資料型態(回傳的內容) 函數名字 ()  {}
  7. // 定義函數
  8.   int Hello()
  9.   {
  10.    
  11.        return 100;
  12.   }

  13. int main() // 主函式  主程式
  14. {
  15.     // 呼叫函數
  16.     cout << Hello() << endl;
  17.     system("pause");
  18.     return 0;
  19.         
  20. }
複製代碼

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

TOP

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

TOP

#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
int num()
  {
   return 188;   
  }
   
int main()
{
  cout<<num()<<endl;
  system("pause");
  return 0;
  
}

TOP

本帖最後由 張凱婷 於 2017-10-31 18:14 編輯

#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
int Hello()
{     
  return 100;   
}
int main()
{
cout<< Hello()<<endl;
system("pause");
return 0;   
   }

TOP

#include<iostream>
#include<cstdlib>
#include<time.h>
using namespace std;
   int ya()
    {return 100;
    }
   
    int main()
{
    cout<<ya()<<endl;
    system("pause");
    return 0;
      
}

TOP

返回列表