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

返回列表