返回列表 發帖

函式的建立與執行 (一)

本帖最後由 鄭繼威 於 2022-6-11 11:18 編輯

自訂函式:
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. int myPlus(int,int,int);
  6. int main()
  7. {
  8.     hello();
  9.     cout<<myPlus(2,5,1)<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
  13. void hello()
  14. {
  15.     cout<<"HELLO!!"<<endl;
  16. }
  17. int myPlus(int x,int y,int z)
  18. {
  19.     return x+y+z;
  20. }
複製代碼

TOP

本帖最後由 田家齊 於 2022-5-21 11:33 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<ctime>
  4. using namespace std;

  5. void hello(){
  6.         cout<<"這是hello函式"<<endl;
  7. }
  8. int myplus(int x,int y,int z){
  9. return x+y+z;
  10. }       
  11. int main()
  12. {
  13.     cout<<"myplus 1+2+3="<<myplus(1,2,3)<<endl;
  14.     cout<<"這是主函式"<<endl;
  15.      hello();
  16. system("pause");
  17.     return 0;
  18. }
複製代碼

TOP

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

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.     hello();
  11.     system("pause");
  12.     return 0;   
  13. }
複製代碼

TOP

本帖最後由 許宸瑀 於 2022-5-21 11:38 編輯
  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. {               
  6.         cout<<"HELLO!!"<<endl;
  7. }
  8. int main()
  9. {
  10.    hello();
  11.    system("pause");
  12.    return 0;
  13. }
複製代碼

TOP

本帖最後由 許馹東 於 2022-5-21 11:32 編輯
  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. }
複製代碼
  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

本帖最後由 高鋐鈞 於 2022-5-21 11:29 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello();
  5. int myPlus(int,int,int);
  6. void hello()
  7. {
  8.     cout<<"這是hello函式"<<endl;
  9. }
  10. int myplus(int x,int y,int z){
  11.         return x+y+z;
  12. }
  13. int main()
  14. {
  15.     cout<<myplus(1,2,3)<<endl;
  16.     cout<<"這是主函式的hello"<<endl;
  17.         hello();
  18.     system("pause");
  19.     return 0;   
  20. }
複製代碼

TOP

本帖最後由 孫子傑 於 2022-5-21 11:29 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void sb(){
  5.         cout<<"這是sb函式"<<endl;
  6. }
  7. int p (int x,int y,int z){
  8.         return x+y+z;
  9. }
  10. int main(){
  11.         cout<<"p 1+2+3="<<p(1,2,3)<<endl;
  12.         cout<<"這是主函式的sb"<<endl;
  13.         sb();
  14.         system("pause");
  15.         return 0;
  16. }
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void sb(){
  5.         cout<<"這是sb函式"<<endl;
  6. }
  7. int main(){
  8.       
  9.         cout<<"這是主函式的sb"<<endl;
  10.         sb();
  11.         system("pause");
  12.         return 0;
  13. }
複製代碼

TOP

本帖最後由 徐譽豈 於 2022-5-21 11:39 編輯
  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. }
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello(){
  5.         cout<<"這是hello函式"<<endl;
  6. }
  7. int main(){
  8.         cout<<"這是主函式的hello"<<endl;
  9.         hello();
  10.         system("pause");
  11.         return 0;
  12. }
複製代碼

TOP

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

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

TOP

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

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. }
複製代碼
  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.         return x+y+z;
  10. }
  11. int main()
  12. {
  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. //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. }
複製代碼

TOP

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

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

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

TOP

返回列表