Programming Basicdefine a Macro "MIN", which has two parameters and return the less one.

#define MIN(A,B) ((A)<=(B)?(A):(B))
原文地址:https://www.cnblogs.com/Winston/p/1081523.html