返回列表 發帖

函式的建立與執行 (一)

本帖最後由 鄭繼威 於 2023-4-21 01:51 編輯

宣告變數->變數型態 變數名字
int a
宣告函式->回傳型態 函式名字()
回傳型態(沒有回傳void)
void hello()
int add()


自訂函式:
1. hello()
2. myPlus(int x,int y,int z)

Tip:先定義才能呼叫
定義時小心保留字(給變數取名字的時候也是)

第一階段hello()
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. //hello函式
  5. void hello(){
  6.         cout<<"這是hello函式"<<endl;
  7. }
  8. //宣告變數->變數型態 變數名字
  9. //int a
  10. //宣告函式->回傳型態 函式名字()

  11. //主函式
  12. int main(){
  13.        
  14.         cout<<"這是主函式的hello"<<endl;
  15.         hello();
  16.         system("pause");
  17.         return 0;
  18. }
複製代碼
第二階段myPlus(int x,int y,int z)
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. //hello函式
  5. void hello(){
  6.         cout<<"這是hello函式"<<endl;
  7. }
  8. //宣告變數->變數型態 變數名字
  9. //int a
  10. //宣告函式->回傳型態 函式名字()
  11. //int myPlus
  12. //沒有回傳值時 void


  13. int myPlus(int x,int y,int z){
  14.         return x+y+z;
  15. }

  16. //主函式
  17. int main(){
  18.         cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
  19.         cout<<"這是主函式的hello"<<endl;
  20.         hello();
  21.         system("pause");
  22.         return 0;
  23. }
複製代碼

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello(){
  5.         cout<<"這是hello函式"<<endl;
  6. }
  7. int myPlus(int x,int y,int z){
  8.         return x+y+z;
  9. }
  10. int main(){
  11.         cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
  12.         cout<<"這是主函式的hello"<<endl;
  13.         hello();
  14.         system("pause");
  15.         return 0;
  16. }
複製代碼

TOP

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


  4. void hello(){
  5.         cout<<"這是hello函式"<<endl;
  6. }

  7. int main(){
  8.       
  9.         cout<<"這是主函式的hello"<<endl;
  10.         hello();
  11.         system("pause");
  12.         return 0;
  13. }
複製代碼

TOP

  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.     cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
  15.     cout<<"這是主函式的hello"<<endl;
  16.     hello();
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello()
  5. {
  6.         cout<<"這是hello函式"<<endl;
  7. }
  8. int main()
  9. {
  10.         cout<<"這是主函式的hello"<<endl;
  11.         hello();
  12.         system("pause");
  13.         return 0;
  14. }
複製代碼
  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.         cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
  14.         cout<<"這是主函式的hello"<<endl;
  15.         hello();
  16.         system("pause");
  17.         return 0;
  18. }
複製代碼

TOP

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


  4. void hello(){
  5.         cout<<"這是hello函式"<<endl;
  6. }



  7. int myPlus(int x,int y,int z){
  8.         return x+y+z;
  9. }


  10. int main(){
  11.         cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
  12.         cout<<"這是主函式的hello"<<endl;
  13.         hello();
  14.         system("pause");
  15.         return 0;
  16. }
複製代碼

TOP

返回列表