返回列表 發帖

函式的建立與執行 (一)

本帖最後由 tonyh 於 2018-6-20 16:28 編輯

自訂函式:
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. }
複製代碼

本帖最後由 黃茂勛 於 2016-12-9 20:10 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void stupid()
  5. {
  6.      cout<<"You are stupid"<<endl;
  7. }
  8. int myF(int x, int y)
  9. {
  10.      return x+y;
  11. }
  12. int main()
  13. {
  14.     stupid();
  15.     cout<<myF(80,7)<<endl;
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

TOP

本帖最後由 林侑成 於 2016-12-8 20:50 編輯
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<cmath>
  4. using namespace std;
  5. void fuck()
  6. {
  7.     cout<<"FUCK!!\tFUCK!!\tFUCK!!\tFUCK!!\tFUCK!!"<<endl;
  8. }
  9. int iPlus(double x,double y,double z)
  10. {
  11.    return x*y*z;
  12. }
  13. int main()
  14. {
  15.     re:
  16.     fuck();
  17.     cout<<iPlus(1012001,5,6)<<endl;
  18.     _sleep(1000);
  19.     goto re;
  20.     system("pause");
  21.     return 0;
  22. }
複製代碼
我是眾神之王XXX  I love you
0000000000

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void test1()
  5. {
  6.         cout<<"jfhjkshgjkdfhgkjdfhgkdhglkdkakjahdjkahdjksdhfkjhskjfhsdkfhsdkfhsdkjfhsdjkfhsdjkfhdsjk";
  7. }
  8. int test2(int a,int b,int c)
  9. {
  10.         return a*b*c;
  11. }
  12. int main()
  13. {
  14.         test1();
  15.         cout<<endl;
  16.         cout<<test2(213,112,255);
  17.        
  18.         system("pause");
  19.         return 0;
  20. }
複製代碼
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void test1();
  5. int test2(int,int,int);
  6. int main()
  7. {
  8.         test1();
  9.         cout<<endl;
  10.         cout<<test2(213,112,255);
  11.        
  12.         system("pause");
  13.         return 0;
  14. }
  15. void test1()
  16. {
  17.         cout<<"jfhjkshgjkdfhgkjdfhgkdhglkdkakjahdjkahdjksdhfkjhskjfhsdkfhsdkfhsdkjfhsdjkfhsdjkfhdsjk";
  18. }
  19. int test2(int a,int b,int c)
  20. {
  21.         return a*b*c;
  22. }
複製代碼

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void gg()
  5. {
  6.     cout<<"GG inin der "<<endl;
  7. }
  8. int main()
  9. {
  10.     gg();
  11.     system("pause");
  12.     return 0;   
  13. }
複製代碼

TOP

返回列表