返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void Cout()
  5. {
  6. cout<<"hellow\n";     
  7. }
  8. int Plus(int a,int b,int c)
  9. {
  10.      return a+b+c;
  11. }
  12. void Plus2(int a,int b,int c)
  13. {
  14.   cout<<a+b+c;   
  15. }
  16. int main()
  17. {   
  18.      Cout();
  19.      cout<<Plus(4,3,6)<<endl;
  20.      Plus2(3,2,1);
  21.         system("pause");
  22.         return 0;
  23. }
複製代碼

TOP

返回列表