floating point - Max value can stored in Java float with two digit precision (2 digit accuracy)? -
how find max 2 decimal precision vale can stored in float ?
from understanding, in 32 bit float have 24(23+1) storing number excluding exponent. 2^24 max value store ?
thanks in advance. sriraman
2^24 largest integer can store accurately. largest 2 decimal places value can store without loss of precision. 2^24/100.
note: 0.1 & 0.01 cannot stored accurately rounding can value without error. taking question literally, largest value 0.00. ;)
the largest value 2 digits of precision close float.max_value, don't think mean.
Comments
Post a Comment