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

返回列表