Question: CHALLENGE ACTIVITY 2 . 1 2 . 2 : Type conversions. 5 2 8 0 4 0 3 4 8 9 5 2 8 .

CHALLENGE
ACTIVITY
2.12.2: Type conversions.
5280403489528. qx3zqy7?
Jump to level 1
Given that 1 foot =12 inches, complete the calculation to convert the integer variable num/nches to the double variable numFe using implicit conversion.
Ex: If the input is 284, then the output is:
23.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 =Y** Your code goes here */ INCHES_PER_FOOT;
System.out.print (numFeet);
System.out.println(" feet");
}
1
2
3
Search
 CHALLENGE ACTIVITY 2.12.2: Type conversions. 5280403489528. qx3zqy7? Jump to level 1

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!