Question: It is Java CHALLENGE ACTIVITY 5.10.2: Convert a height into inches Write a second convertTolnches0 with two double parameters, numFeet and numlnches, that returns the

It is Java
CHALLENGE ACTIVITY 5.10.2: Convert a height into inches Write a second convertTolnches0 with two double parameters, numFeet and numlnches, that returns the total number of inches Ex: convertTolnches(4.0, 6.0) returns 54.0 (from 4.0* 12+ 6.0) 1 import java.util.Scanner; 3 public class MethodOverload 5 public double convertToInches (double numFeet) t 1 test passed return numFeet 12.0 All tests passed 9 Your solution goes here / 11 public static void main (String ] args) 12 13 double totalInches; MethodOverload measuringTape - new MethodOverload) 15 16 17 18 19 20 21 totalInches -measuringTape.convertToInches (4.0, 6.0); System.out.println("4.0, 6.0 yields"totalInches); totalinches measuringTape.convertToInches (5.9); System.out.println("5.9 yields"totalInches); Run
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
