Question: To round numbers to specific decimal places, use a statement like double y = Math.floor(x * 10 + 0.5) / 10; which rounds x to
To round numbers to specific decimal places, use a statement like double y = Math.floor(x * 10 + 0.5) / 10;
which rounds x to the tenths position (i.e., the first position to the right of the decimal point), or double y = Math.floor(x * 100 + 0.5) / 100;
which rounds x to the hundredths position (i.e., the second position to the right of the decimal point). Write an application that defines four methods for rounding a number x in various ways:
a) roundToInteger(number)
b) roundToTenths(number)
c) roundToHundredths(number)
d) roundToThousandths(number)
For each value read, your program should display the original value, the number rounded to the nearest integer, the number rounded to the nearest tenth, the number rounded to the nearest hundredth and the number rounded to the nearest thousandth.
Step by Step Solution
3.37 Rating (147 Votes )
There are 3 Steps involved in it
Here is a simple Java program which follows your specifications and covers all cases explained in yo... View full answer
Get step-by-step solutions from verified subject matter experts
