c++内置类型范围!

// PATn.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include
#include
#include
#include
#include

using namespace std;

int main()
{
    cout << "type: \t\t\t" << "************size**************" << endl;
    cout << "short: \t\t\t" << "字节数:" << sizeof(short) << endl;
    cout << "最大值:" << (numeric_limits::max)();
    cout << "\t\t最小值:" << (numeric_limits::min)() << endl;
    cout << endl;
    cout << "int: \t\t\t" << "字节数:" << sizeof(int) << endl;
    cout << "最大值:" << (numeric_limits::max)();
    cout << "\t最小值:" << (numeric_limits::min)() << endl;
    cout << endl;
    cout << "unsigned: \t\t" << "字节数:" << sizeof(unsigned) << endl;
    cout << "最大值:" << (numeric_limits::max)();
    cout << "\t最小值:" << (numeric_limits::min)() << endl;
    cout << endl;
    cout << "long: \t\t\t" << "字节数:" << sizeof(long) << endl;
    cout << "最大值:" << (numeric_limits::max)();
    cout << "\t最小值:" << (numeric_limits::min)() << endl;
    cout << endl;
    cout << "unsigned long: \t\t" << "字节数:" << sizeof(unsigned long) << endl;
    cout << "最大值:" << (numeric_limits::max)();
    cout << "\t最小值:" << (numeric_limits::min)() << endl;
    cout << endl;
    cout << "long long: \t\t" << "字节数:" << sizeof(long long) << endl;
    cout << "最大值:" << (numeric_limits::max)();
    cout << "\t\t最小值:" << (numeric_limits::min)() << endl;
    cout << endl;
    cout << "unsigned long long: \t" << "字节数:" << sizeof(unsigned long long) << endl;
    cout << "最大值:" << (numeric_limits::max)();
    cout << "\t\t最小值:" << (numeric_limits::min)() << endl;
    cout << endl;
    cout << "double: \t\t" << "字节数:" << sizeof(double) << endl;
    cout << "最大值:" << (numeric_limits::max)();
    cout << "\t最小值:" << (numeric_limits::min)() << endl;
    cout << endl;
    cout << "long double: \t\t" << "字节数:" << sizeof(long double) << endl;
    cout << "最大值:" << (numeric_limits::max)();
    cout << "\t最小值:" << (numeric_limits::min)() << endl;
    cout << endl;
    cout << "float: \t\t\t" << "字节数:" << sizeof(float) << endl;
    cout << "最大值:" << (numeric_limits::max)();
    cout << "\t最小值:" << (numeric_limits::min)() << endl;
    return 0;
}

你可能感兴趣的:(c++内置类型范围!)