本文共 117 字,大约阅读时间需要 1 分钟。
写一个宏,用来返回两个数中最小的一个.
#define (x) > (y) ? (y) : (x)
考虑下为什么要用括号?
转载于:https://www.cnblogs.com/huang321/p/6500707.html