返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. void hello(){
  5.      cout<<"hello2"<<endl;
  6. }
  7. int myPlus(int x,int y,int z){
  8.         return x+y+z;
  9. }

  10. int main(){
  11.     cout<<"hello1"<<endl;
  12.     hello();

  13.     cout<<"myPlus 2+4+6="<<myPlus(2,4,6)<<endl;

  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

TOP

返回列表