// PATn.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include<iostream>
#include<iomanip>
#include<string>
#include<limits>
#include<iomanip>
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 << endl;
cout << "int: \t\t\t" << "字节数:" << sizeof(int) << endl;
cout << "最大值:" << (numeric_limits<int>::max)();
cout << "\t最小值:" << (numeric_limits<int>::min)() << endl;
cout << endl;
cout << "unsigned: \t\t" << "字节数:" << sizeof(unsigned) << endl;
cout << "最大值:" << (numeric_limits<unsigned>::max)();
cout << "\t最小值:" << (numeric_limits<unsigned>::min)() << endl;
cout << endl;
cout << "long: \t\t\t" << "字节数:" << sizeof(long) << endl;
cout << "最大值:" << (numeric_limits<long>::max)();
cout << "\t最小值:" << (numeric_limits<long>::min)() << endl;
cout << 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 << 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 << 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 << endl;
cout << "double: \t\t" << "字节数:" << sizeof(double) << endl;
cout << "最大值:" << (numeric_limits<double>::max)();
cout << "\t最小值:" << (numeric_limits<double>::min)() << endl;
cout << 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 << endl;
cout << "float: \t\t\t" << "字节数:" << sizeof(float) << endl;
cout << "最大值:" << (numeric_limits<float>::max)();
cout << "\t最小值:" << (numeric_limits<float>::min)() << endl;
return 0;
}
c++内置类型范围!
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- C++基本数据类型 References: http://www.cppblog.com/xyjzsh/archi...