返回列表 發帖

函式的建立與執行 (一)

自訂函式:
1. hello()
2. myPlus(int x,int y,int z)
  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. {
  14.     hello();
  15.     cout<<myPlus(2,5,1)<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello();
  5. int myPlus(int,int,int);
  6. int main()
  7. {
  8.     hello();
  9.     cout<<myPlus(2,5,1)<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
  13. void hello()
  14. {
  15.     cout<<"HELLO!!"<<endl;
  16. }
  17. int myPlus(int x,int y,int z)
  18. {
  19.     return x+y+z;
  20. }
複製代碼

  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. {
  14.         hello();
  15.         cout<<myPlus(5128514560000,4565645610000,4548790000)<<endl;
  16.         system("pause");
  17.         return 0;
  18. }
複製代碼

TOP

  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. {
  14.     hello();
  15.     cout<<myPlus(2,5,1)<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

TOP

  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. {
  14.         hello();
  15.         cout<<myPlus(458445454,94878787,486666)<<endl;
  16.         system("pause");
  17.         return 0;
  18. }
複製代碼

TOP

  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. {
  14.         hello();
  15.         cout<<myplus(9,9,9)<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

TOP

  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. {
  14.         hello();
  15.         cout<<myPlus(5128514560000,4565645610000,4548790000)<<endl;
  16.         system("pause");
  17.         return 0;
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello();
  5. int myPlus(int,int,int);
  6. int main()
  7. {
  8.     hello();
  9.     cout<<myPlus(2,5,1)<<endl;
  10.     system("pause");
  11.     return 0;   
  12. }
  13. void hello()
  14. {
  15.     cout<<"HELLO!!"<<endl;
  16. }
  17. int myPlus(int x,int y,int z)
  18. {
  19.     return x+y+z;
  20. }
複製代碼

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
void hello()
{
    cout<<"HELLO!!"<<endl;
}
int myPlus(int x,int y,int z)
{
    return x+y+z;
}
int main()
{
    hello();
    cout<<myPlus(2,5,1)<<endl;
    system("pause");
    return 0;   
}

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void hello()
  5. {
  6.     cout<<"HI!"<<endl;
  7. }
  8. int myPlus(int x,int y,int z)
  9. {
  10.     return x+y+z;
  11. }
  12. int main()
  13. {
  14.     hello();
  15.     cout<<myPlus(2,5,1)<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     void hello()
  7.         {
  8.                 cout<<"Hello"<<endl;
  9.     }
  10.     int myPlus(int x,y,int z)
  11.     {
  12.             return x+y+z;
  13.     }
  14.     int main()
  15.     {
  16.             hello();
  17.             cout<<myPlus(2,5,1)<<endl;
  18.        
  19.        
  20.         }                                          
  21.     system("pause");   
  22.     return 0;
  23. }      
複製代碼

TOP

返回列表