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

TOP

返回列表