返回列表 發帖
  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. int main()
  14. {
  15.     hello();
  16.     cout<<myPlus(2,5,1)<<endl;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

返回列表