Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
There are still some questions unanswered. Write a program that tests these occurances to learn more about formatting. Submit the code and your...
There are still some questions unanswered. Write a program that tests these occurances to learn more about formatting. Submit the code and your answers.
What happens when:
- You have more digits than your format describes.
- (ie. 438.978 and "##.##")
- You have fewer digits than your format describes
- You remove decimal places, does the formatter round the number?
- You use a string instead of a literal value to represent the format description (String format = "##.#"; DecimalFormat(format);)