详情见下:

1
2
3
4
5
6
7
8
9
10
11
12
char             -128 ~ +127        (1 Byte) (-2^(8*1-1) ~  2^(8*1-1)-1) 
short -32767 ~ + 32768 (2 Bytes) (-2^(8*2-1) ~ 2^(8*2-1)-1)
unsigned short 0 ~ 65535 (2 Bytes) (0 ~ 2^(8*2)-1)
int -2147483648 ~ +2147483647 (10位数) (4 Bytes) (-2^(8*4-1) ~ 2^(8*4-1)-1 )
unsigned int 0 ~ 4294967295 (4 Bytes) (0 ~ 2^(8*4-1)-1 )
long == int
long long -9223372036854775808 ~ +9223372036854775807 (19位数) (8 Bytes) (-2^(8*8-1) ~ 2^(8*8-1)-1 )
long long == __int64 == int64_t
unsign long long 0 ~ 18446744073709551615 (20位数) (8 Bytes) (0 ~ 2^(8*8-1) )
double 1.7 * 10^308 (8 Bytes) //这个不怎么确定

__int128 -170141183460469231731687303715884105728 ~ 170141183460469231731687303715884105727 (39位数) (16 Bytes) (-2^(8*16-1) ~ 2^(8*16-1)-1)

注:

  1. __int64 和 long long 的区别 : 点此
  2. 关于__int128的使用注意事项
    • 能在Linux下使用, 还能再mingw64下使用。 Cion配置MinGW64, 详情点击
    • 需要自己写读入输出挂

详情见博客: 点此

1
恰似你一低头的温柔,较弱水莲花不胜寒风的娇羞, 我的心为你悸动不休。  --mingfuyan