返回列表 發帖
  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.     cout<<"請輸入要相加的3數:"<<endl;
  19.     int a,b,c;
  20.     cin>>a>>b>>c;
  21.     cout<<"相加為:"<<add(a,b,c)<<endl;
  22.     system("pause");
  23.     return 0;
  24. }
複製代碼

TOP

返回列表