Answered step by step
Verified Expert Solution
Question
1 Approved Answer
JAVA 6.10 (Rounding Numbers) To round numbers to specific decimal places, use a starement like double y = Math.floor(x * 10 + 0.5) / 10;
JAVA
6.10 (Rounding Numbers) To round numbers to specific decimal places, use a starement 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) roundTo Thousandths(number) for cach value read, your program should display the original value, the number rounded to the carest integer, the number rounded to the nearest tenth, the number rounded to the nearest hun- dhedth and the number rounded to the nearest thousandthStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started