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

  4. void hello()
  5. {
  6.     cout<<"這是hello函式"<<endl;
  7. }
  8. add(int x,int y,int z)
  9. {
  10.         int sum=x+y+z;       
  11.         return sum;
  12. }


  13. int main()
  14. {
  15.     cout<<"這是主函式的hello"<<endl;
  16.     hello();
  17.     cout<<endl;
  18.    
  19.     cout<<"請輸入要相加的3數:"<<endl;
  20.     int a,b,c;
  21.     cin>>a>>b>>c;
  22.     cout<<"相加為:"<<add(a,b,c)<<endl;
  23.    
  24.     system("pause");
  25.     return 0;
  26. }
複製代碼

TOP

返回列表