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

TOP

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

TOP

返回列表