Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Essential SQLAlchemy Mapping Python To Databases

Authors: Myers, Jason Myers

2nd Edition

1491916567, 9781491916568

More Books

Students also viewed these Databases questions

Question

=+ Who has this information?

Answered: 1 week ago

Question

What is paper chromatography?

Answered: 1 week ago

Question

Explain the cost of capital.

Answered: 1 week ago

Question

Define capital structure.

Answered: 1 week ago