MINMAX.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:0k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #define MIN(x, y) (((x) < (y)) ? (x): (y))
  3. #define MAX(x, y) (((x) > (y)) ? (x): (y))
  4. void main(void)
  5.  {
  6.    printf("Minimum of 3 and 5 is %dn", MIN(3, 5));
  7.    printf("Maximum of 3.4 and 3.1 is %fn", MAX(3.4, 3.1));
  8.    printf("Minimum of -100 and 1000 is %dn", MIN(-100, 1000));
  9.  }
  10.