返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello(){
  5.      cout<<"hello2"<<endl;
  6.      }
  7. int add(int x,int y,int z){
  8.     return x+y+z;  
  9. }
  10. int main(){
  11.     cout<<"hello1"<<endl;
  12.     hello();
  13.     cout<<"hello3"<<endl;
  14.     system("pause");
  15.     cout<<"輸入三個想相加的數"<<endl;
  16.     int a,b,c;
  17.     cin>>a>>b>>c;
  18.     cout<<add(a,b,c)<<endl;
  19.     system("pause");
  20.     return 0;   
  21. }
複製代碼

TOP

返回列表