Consider these two numbers :
double v1 = 2433.36..
double v2 = 0.36...
v2 might be more precise ( more accurate digits after the decimal point ) due to the fact that less digits are used for encoding the left part of the radix point or not?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
By precision you clearly mean accurate digits after the decimal point. Then the answer is yes. Floating point numbers have a fixed number of digits. If you have more before the decimal point then you can have fewer after the decimal point (or radix point). And leading or trailing zeros don’t count in this calculation.