15.3 对比实例

试试这个

  1. double d_max (double a, double b)
  2. {
  3. if (a>b)
  4. return a;
  5. return b;
  6. };