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

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

  11. int main(){
  12.         hello();
  13.         int a,b;
  14.         cout<<"請輸入你要相加的兩個數:";
  15.         cin>>a>>b;
  16.         cout<<add(a,b)<<endl;
  17.         system("pause");
  18.         return 0;
  19. }
複製代碼

TOP

返回列表