Understanding numbers

Phylum

Centurion
Joined
Jun 20, 2003
Messages
105
Location
Canada
What are the biggest and smallest numerical values (not the scientific notation) for singles and doubles and integers?

Phylum
 
You can use the properties: Integer.MinValue Single.MaxValue Double.MaxValue (etc etc) to get this.


Integer min = -2147483648
Integer max = 2147483647
Single min = -3.402823E+38
Single max = - 3.402823E+38
Double min = -1.79769313486232E+308
Double max = 1.79769313486232E+308
 
Back
Top