Question: public class Length { private double inches; public void setInches ( double inputInches ) { inches = inputInches; } public double getInches ( ) {
public class Length
private double inches;
public void setInchesdouble inputInches
inches inputInches;
public double getInches
return inches;
private double converToFeet
inches inches ;
public void printInFeet
System.out.printff feet
convertToFeet;
Define a private helper method called convertToFeet that converts the field inches to feet and returns a double.
Ex: If the input is then the output is:
feet
Note: The equation to convert from inches to feet is: feet inches
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
