Question: 5 0 4 1 6 6 . 3 4 8 4 7 2 2 . qx 3 zqy 7 Jump to level 1 Given that

504166.3484722.qx3zqy7
Jump to level 1
Given that 1 foot =12 inches, complete the calculation to convert the integer variable numlnches to the double variable numFeet
using implicit conversion.
Ex: If the input is 731, then the output is:
60.0 feet
import java.util.Scanner;
public class FeetConverter {
public static void main(String[] args){
Scanner scnr = new Scanner(
System.in);
final int INCHES_PER_FOOT =12;
int numInches;
double numFeet;
numInches =scnr. nextInt ();
numFeet ?*=* Your code goes here **? INCHES_PER_FOOT;
System. out.print(numFeet);
System.out.println(" feet");
 504166.3484722.qx3zqy7 Jump to level 1 Given that 1 foot =12 inches,

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!