Assume that price is an integer variable whose value is the price (in US currenc
ID: 3638457 • Letter: A
Question
Assume that price is an integer variable whose value is the price (in US currency) in cents of an item. Write a statement that prints the value of price in the form "X dollars and Y cents". So, if the value of price was 4321, your code would print "43 dollars and 21 cents". If the value was 501 it would print "5 dollars and 1 cents". If the value was 99 your code would print "0 dollars and 99 cents".Instructor's notes: Pay attention to their spacing. You can be printing the correct numeric values and still have an error if you don't have the same spacing in your output.
Explanation / Answer
System.out.println( (prince /100) + " dollars and " + (price %100) + " cents.");