博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
常用整型变量的最大取值范围
阅读量:6471 次
发布时间:2019-06-23

本文共 611 字,大约阅读时间需要 2 分钟。

#include
#include
#include
using namespace std;int main(){ // 2^16 = 32768 : unsigned short // 2^32 = 4.29497e+009 : unsigned int, long // 2^64 = 1.84467e+019 : unsigned long long // SHRT_MAX = 32767 (3.2e+004): short // INT_MAX = 2147483647 (2.1e+009) : int // LONG_MAX = 2147483647 (2.1e+009) : long // LONG_LONG_MAX = 9.2e+018 : long long cout << pow(2,31) << endl; cout << SHRT_MAX << endl; cout << INT_MAX << endl; cout << LONG_MAX << endl; return 0; }

 

转载于:https://www.cnblogs.com/juxq/p/9739356.html

你可能感兴趣的文章
STL之map、set灵活使用
查看>>
手动删除portal中托管服务。
查看>>
json_decode转换数组过程中,结果为null处理办法,百分之百有效
查看>>
SqlServer 中的触发器
查看>>
java面向对象(异常)
查看>>
在Leangoo里怎么找到用户中心?
查看>>
JS获取对象“属性”的方法
查看>>
团队管理中的每日站立会思考
查看>>
ascll码
查看>>
myeclipse 启动tomcat报错
查看>>
Java 日历组件java.util.Calendar以及时间戳 java.sql.Timestamp
查看>>
http header
查看>>
周进度总结
查看>>
Windows Powershell统计代码行数
查看>>
访问ORACLE数据库
查看>>
用批处理编译*.sln工程
查看>>
数组平衡点
查看>>
shake.js实现微信摇一摇功能
查看>>
纪中2018暑假培训day5提高b组改题记录
查看>>
BIOS基本知识
查看>>