Question: Given that 1 dollar = 1 0 0 cents, complete the calculation to convert the integer variable numCents to the double variable numDollars using implicit

Given that 1 dollar =100 cents, complete the calculation to convert the integer variable numCents to the double variable
numDollars using implicit conversion.
Ex: If the input is 596, then the output is:
5.0 dollars
import java.util.Scanner;
public class DollarsConverter {
public static void main(String[] args){
Scanner scnr = new Scanner(
System.in);
final int CENTS_PER_DOLLAR =100;
int numCents;
double numDollars;
numCents = scnr. nextInt ();
numDollars ?*=* Your code goes here **? CENTS_PER_DOLLAR;
System.out.print(numDollars);
System.out.println(" dollars");
}
}
 Given that 1 dollar =100 cents, complete the calculation to convert

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!