Question: Given that 1 pound = 1 6 ounces, complete the calculation to convert the integer variable numOunces to the double variable numPounds using implicit conversion.

Given that 1 pound =16 ounces, complete the calculation to convert the integer variable numOunces to the double variable numPounds using implicit conversion.
Ex: If the input is 714, then the output is:
44.0 pounds
import java.util.scanner;
public class Poundsconverter {
public static void main(String[] args){
Scanner scnr = new Scanner(
System.in);
final int OUNCES_PER_POUND =16;
int numounces;
double numpounds;
numounces =scnr. nextInt ();
numPounds =|| OUNCES_PER_POUND;
System.out.print (numPounds);
System.out.println(" pounds");
}
}
 Given that 1 pound =16 ounces, 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!