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 dollar cents, complete the calculation to convert the integer variable numCents to the double variable
numDollars using implicit conversion.
Ex: If the input is then the output is:
dollars
import java.util.Scanner;
public class DollarsConverter
public static void mainString args
Scanner scnr new Scanner
System.in;
final int CENTSPERDOLLAR ;
int numCents;
double numDollars;
numCents scnr nextInt ;
numDollars Your code goes here CENTSPERDOLLAR;
System.out.printnumDollars;
System.out.println dollars";
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
