返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello(){
  5.         cout<<"這是hello函式"<<endl;
  6. }
  7. int myPlus(int x,int y,int z){
  8.         return x+y+z;
  9. }
  10. int main(){
  11.         cout<<"myPlus 1+2+3="<<myPlus(1,2,3)<<endl;
  12.         cout<<"這是主函式的hello"<<endl;
  13.         hello();
  14.         system("pause");
  15.         return 0;
  16. }
複製代碼

TOP

返回列表