返回列表 發帖

函式的建立與執行 (一)

自訂函式:
1. hello()
2. myPlus(int x,int y,int z)
  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(2,5,1)<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼
  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. }
複製代碼

  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(2,5,1)<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼
Allen

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(2,3,4)<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

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(2,5,1)<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

TOP

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

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. void hello()
  6. {
  7.     for(int i=1;i<=3;i++)
  8.         cout<<"hello!!!!!"<<endl;     
  9. }
  10. int myPlus(int x,int y,int z)
  11. {
  12.     return x+y+z;
  13. }
  14. int main()
  15. {
  16.     hello();
  17.     cout<<myPlus(2,3,4)<<endl;
  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(2,5,1)<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }  
複製代碼
yay! germany I love hitler!

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(2,5,1)<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼
我是嘉禾豬   我是嘉禾豬   我是嘉禾豬

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. void hello();
  6. int myPlus(int,int,int);




  7. int main()
  8. {   
  9.    hello();
  10.    cout<<myPlus(3,6,7)<<endl;
  11.    system("pause");
  12.     return 0;
  13. }        
  14.   void hello()
  15. {
  16. cout<<"hello"<<endl;
  17. }
  18. int  myPlus(int x,int y ,int z)
  19. {
  20.     return x+y+z;
  21. }  
複製代碼

TOP

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

TOP

返回列表