返回列表 發帖
  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

返回列表