int long longlong float double型別資料的範圍
阿新 • • 發佈:2019-01-26
常用資料型別有以下幾種(32位機): char 1位元組 short 2位元組 int 4位元組 long 4位元組 long long 8位元組 float 4位元組 double 5位元組 long double 12位元組
long long的最小值:-9223372036854775808
unsigned long long的最大值:18446744073709551615
__int64的最大值:9223372036854775807
__int64的最小值:-9223372036854775808
unsigned __int64的最大值:18446744073709551615
float的範圍為-2^128 ~ +2^128,也即-3.40E+38 ~ +3.40E+38;
double的範圍為-2^1024 ~ +2^1024,也即-1.79E+308 ~ +1.79E+308。
unsigned int 0~4294967295
int 2147483648~2147483647 unsigned long 0~4294967295 long 2147483648~2147483647 long long的最大值:9223372036854775807