整型
#include <iostream>
#include <climits>
using namespace std;
/*
四对整数类型
int, unsigned int;
short, unsigned short;
long, unsigned long;
long long, unsigned long long;
3为int类型;
3u为unsigned int类型;
3L为long类型;
3uL为unsigned long类型;
3LL为long long类型;
3uLL为unsigned long long 类型;
注:u, l, ll大小写都可,u表示unsigned无符号,l表示long, ll表示long long
*/
int main() {
/*
一、int 类型
有符号整数
4个字节
表达范围:-2147483648 ~ 2147483647,最大10位数字
*/
int a = 2;
int a1 = -2;
int a2 = 2147483647; //INT_MAX常量,为整数的最大值
int a3 = 2147483647+1; //错误,最大值+1会溢出
cout<<INT_MIN<<endl; //int 最小值
cout<<INT_MAX<<endl; //int 最大值
cout<<a<<endl;
cout<<a1<<endl;
cout<<a2<<endl;
cout<<a3<<endl;
cout<<endl;
/*
输出:
2
-2
2147483647
-2147483648
*/
// 任何类型整数都可以用其它进制表示
int a4 = 20; //默认为十进制数
int a5 = 020; //以0开头为八进制数,十进制为16
int a6 = 0x20; //以0x或0X开头为十六进制数,十进制为32
int a7 = -0x20; //各进制数也可以添加符号,十进制表示-32
int a8 = 0b1010; //以0b或0B开头为二进制数,十进制为10
cout<<a4<<endl;
cout<<a5<<endl;
cout<<a6<<endl;
cout<<a7<<endl;
cout<<a8<<endl;
cout<<endl;
/*
输出:
20
16
32
-32
10
*/
/*
二、unsigned int类型
无符号整型
4个字节
表达范围:0 ~ 4294967295
*/
unsigned int ua = 3; //把一个整数赋值给usigned int类型,3默认是int类型,通过赋值转成unsigned int类型
unsigned int ua1 = 3u; //u表示无符号,3u表示无符号整数3
unsigned ua2 = 4; //unsigned 相当于 unsigned int
unsigned ua3 = -3; //错误,unsigned int是指无符号,不能把负数赋值给无符号变量
unsigned ua4 = (unsigned)2147483647 + 1; //正确,由于2147483647默认为int,如果+1会超过其范围
unsigned ua5 = 2147483647U + 1; //+u表示无符号
cout<<UINT_MAX<<endl; //unsigned int 最大值
cout<<ua<<endl;
cout<<ua1<<endl;
cout<<ua2<<endl;
cout<<ua3<<endl;
cout<<ua4<<endl;
cout<<ua5<<endl;
cout<<endl;
/*
输出:
3
4
4294967293
2147483648
*/
/*
三、short 类型(或 short int 类型)
短整型
2字节
表达范围:-32768 ~ 32767
*/
short int sa = 3;
short sa1 = -4;
short sa2 = 32768; //错误,已超过表达范围,溢出
cout<<SHRT_MIN<<endl;
cout<<SHRT_MAX<<endl;
cout<<sa<<endl;
cout<<sa1<<endl;
cout<<sa2<<endl;
cout<<endl;
/*
输出:
-32768
32767
3
-4
-32768
*/
/*
四、unsigned short (或 unsigned short int 类型,int可以省略)
无符号短整型
2字节
表达范围:0 ~ 65535
*/
unsigned short int usa = 3;
unsigned short usa1 = -4;//错误,不能把有符号赋值给无符号变量
unsigned short usa2 = 65536; //错误,溢出
cout<<USHRT_MAX<<endl; //最大值
cout<<usa<<endl;
cout<<usa1<<endl;
cout<<usa2<<endl;
cout<<endl;
/*
输出:
65535
3
65532
0
*/
/*
五、long 类型
长整型
4字节(32位系统),8字节(64位系统),本机测试数据为64位系统
表达范围:-2147483648 ~ 2147483647 或 -9223372036854775808 ~ 9223372036854775807
*/
long la = 3; // 把3赋值给长整型,这里的3原来是int类型,通过赋值转成了long类型
long la1 = 3l; //+l 或 +L表示长整型,3l, 3L本身是一个长整型。
long la2 = 3L;
cout<<LONG_MIN<<endl;
cout<<LONG_MAX<<endl;
cout<<la<<endl;
cout<<la1<<endl;
cout<<la2<<endl;
cout<<endl;
/*
输出:
-9223372036854775808
9223372036854775807
3
3
3
*/
/*
六、unsigned long
无符号长整型
4字节(32位系统),8字节(64位系统),本机测试数据为64位系统
表达范围:0 ~ 4294967295 或 0 ~ 18446744073709551615
*/
unsigned long ula = 3;
unsigned long ula1 = 2ul; //+ul 或 +UL 表示无符号长整型
unsigned long ula2 = 2UL;
unsigned long ula3 = -2; //错误
cout<<ULONG_MAX<<endl;
cout<<ula<<endl;
cout<<ula1<<endl;
cout<<ula2<<endl;
cout<<ula3<<endl;
cout<<endl;
/*
输出:
18446744073709551615
3
2
2
18446744073709551614
*/
/*
七、long long 类型
超长整型
8字节
表达范围:-9223372036854775808 ~ 9223372036854775807
*/
long long lla = 3;
long long lla1 = 3ll; //+ll + LL表示这个数为超长整型
long long lla2 = 3LL;
long long lla3 = -3LL;
cout<<LLONG_MIN<<endl;
cout<<LLONG_MAX<<endl;
cout<<lla<<endl;
cout<<lla1<<endl;
cout<<lla2<<endl;
cout<<lla3<<endl;
cout<<endl;
/*
输出:
-9223372036854775808
9223372036854775807
3
3
3
-3
*/
/*
八、unsigned long long 类型
无符号超长整型
8字节
表达范围:
*/
unsigned long long ulla = 3;
unsigned long long ulla1 = 3ull; //+ull, +ULL 表示无符号长整型
unsigned long long ulla2 = 3ULL;
unsigned long long ulla3 = -3ULL; //错误
cout<<ULLONG_MAX<<endl;
cout<<ulla<<endl;
cout<<ulla1<<endl;
cout<<ulla2<<endl;
cout<<ulla3<<endl;
cout<<endl;
/*
输出:
18446744073709551615
3
3
3
18446744073709551613
*/
return 0;
}