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 setInches(double inputInches){
inches = inputInches;
}
public double getInches(){
return inches;
}
private double converToFeet(){
inches = inches /12;
}
public void printInFeet(){
System.out.printf("%.1f 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 1008.0, then the output is:
84.0 feet
Note: The equation to convert from inches to feet is: feet = inches /12

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!