C/C++中各种类型int、long long、double表示范围(最大最小值)

#include<iostream>
#include<string>
#include <limits>
using namespace std;
int main()
{
    cout << "type: \t\t\t" << "************size**************"<< endl;
    cout << "short: \t\t\t" << "字节数:" << sizeof(short) <<endl;
    cout << "最大值:" << (numeric_limits<short>::max)();
    cout << "\t\t最小值:" << (numeric_limits<short>::min)() << endl;
    cout << "int: \t\t\t" << "字节数:" << sizeof(int) <<endl;
    cout << "最大值:" << (numeric_limits<int>::max)();
    cout << "\t最小值:" << (numeric_limits<int>::min)() << endl;
    cout << "unsigned: \t\t" << "字节数:" << sizeof(unsigned) <<endl;
    cout << "最大值:" << (numeric_limits<unsigned>::max)();
    cout << "\t最小值:" << (numeric_limits<unsigned>::min)() << endl;
    cout << "long: \t\t\t" << "字节数:" << sizeof(long) <<endl;
    cout << "最大值:" << (numeric_limits<long>::max)();
    cout << "\t最小值:" << (numeric_limits<long>::min)() << endl;
    cout << "unsigned long: \t\t" << "字节数:" << sizeof(unsigned long) <<endl;
    cout << "最大值:" << (numeric_limits<unsigned long>::max)();
    cout << "\t最小值:" << (numeric_limits<unsigned long>::min)() << endl;
	cout << "long long: \t\t" << "字节数:" << sizeof(long long) <<endl;
    cout << "最大值:" << (numeric_limits<long long>::max)();
    cout << "\t\t最小值:" << (numeric_limits<long long>::min)() << endl;
	cout << "unsigned long long: \t" << "字节数:" << sizeof(unsigned long long) <<endl;
    cout << "最大值:" << (numeric_limits<unsigned long long>::max)();
    cout << "\t\t最小值:" << (numeric_limits<unsigned long long>::min)() << endl;
    cout << "double: \t\t" << "字节数:" << sizeof(double) <<endl;
    cout << "最大值:" << (numeric_limits<double>::max)();
    cout << "\t最小值:" << (numeric_limits<double>::min)() << endl;
    cout << "long double: \t\t" << "字节数:" << sizeof(long double) <<endl;
    cout << "最大值:" << (numeric_limits<long double>::max)();
    cout << "\t最小值:" << (numeric_limits<long double>::min)() << endl;
    cout << "float: \t\t\t" << "字节数:" << sizeof(float) <<endl;
    cout << "最大值:" << (numeric_limits<float>::max)();
    cout << "\t最小值:" << (numeric_limits<float>::min)() << endl;
    return 0;
}



long long doubleC++语言的一种数据类型,它是一种长双精度浮点数类型。根据引用,long double在内存占用12个字节,即96位。它的数值范围非常广,从1.18973e4932到3.3621e-4932。与其他浮点数类型相比,long double提供了更高的精度和更大的数值范围。 另一方面,根据引用,在浮点数类型使用double类型基本上不会出错。相对于float类型,double类型的精度损失较小,且在某些机器上计算速度更快。float类型只能保证6位有效数字,而double类型至少可以保证15位有效数字。因此,在大多数情况下,使用double类型已经足够满足需求,而long double类型的精度通常不必要且会带来额外的运行代价。 最后,引用提到了有关整数类型longint的区别,而long long double是一个浮点数类型,与整数类型无直接关系。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* [C/C++各种类型intlongdouble、char表示范围最大最小值)](https://blog.csdn.net/weixin_34128411/article/details/86110079)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *3* [int, long long, double数据类型的长度及范围整理](https://blog.csdn.net/Dejan520/article/details/124837715)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值