题解 | #嵌入式牛牛宏大小#
嵌入式牛牛宏大小
https://www.nowcoder.com/practice/caea450a63dc4b3e91f2d1d2ec69f359
本题使用三目运算符,进行宏定义。返回较小的那个。
/** * * @author 来斤毛豆 * @version: 1.1 * @date 2023-03-03 * @param a int整型 牛妹的点数 * @param b int整型 牛牛的点数 * @return int整型 */ # define MIN_NUM (a <= b) ? a: b int min_number(int a, int b ) { // write code here return MIN_NUM; }