C、C++最大值、最小值初始化

#include<limits.h> 

int max = INT_MIN; /* 用最小值初始化 */
 int min = INT_MAX; /* 用最大值初始化 */

你可能感兴趣的:(C、C++最大值、最小值初始化)