Question: Write a program that demonstrates the approximate nature of floating point values by performing the following tasks: Use Scanner to read a floating-point value x.
Write a program that demonstrates the approximate nature of floating point values by performing the following tasks:
- Use Scanner to read a floating-point value x.
- Compute 1.0 / x and store the result in y.
- Display x, y, and the product of x and y.
- Subtract 1 from the product of x and y and display the result.
Try your program with values of x that range from 2e-11 to 2e11. What can you conclude?
Step by Step Solution
3.45 Rating (164 Votes )
There are 3 Steps involved in it
See the code in Approximationjava You can... View full answer
Get step-by-step solutions from verified subject matter experts
