C语言可以用预处理命令 define 来定义简单函数:
#define MAX_3(a, b, c) ( ((a > b ? a : b) > c) ? (a > b ? a : b) : c )
#define MIN_3(a, b, c) ( ((a < b ? a : b) < c) ? (a < b ? a : b) : c )
#define MAX_2(x, y) ( x> y ? x : y )
#define MIN_2(x, y) ( x< y ? x : y )
#define A
原创
2022-02-22 16:44:41 ·
553 阅读 ·
0 评论