Default.cpp
上传用户:dq031136
上传日期:2022-08-08
资源大小:802k
文件大小:0k
源码类别:

VC书籍

开发平台:

C++ Builder

  1. #include <iostream.h>
  2. void show_values(int one = 1, int two = 2, int three = 3)
  3.  {
  4.    cout << one << ' ' << two << ' ' << three << 'n';
  5.  }
  6.                                                     
  7. void main(void)
  8.  {
  9.    show_values(1, 2, 3);   
  10.    show_values(100, 200);
  11.    show_values(1000);
  12.    show_values();
  13.  }