[Error] ‘INT_MAX’ was not declared in this scope

使用C++的整型上下限时报错:
error: ‘INT_MAX’ was not declared in this scope

解决办法:
常量INT_MAX和INT_MIN定义在头文件limits中
所以添加头文件

#include<climits> 

#include<limits.h> 

猜你喜欢

转载自blog.csdn.net/weixin_44227356/article/details/114789871