Question: Define a private helper method called convertToOunces ( ) that converts the field pounds to ounces and returns a double. Ex: If the input is

Define a private helper method called convertToOunces() that converts the field pounds to ounces and returns a double.
Ex: If the input is 352.0, then the output is:
5632.0 ounces
Note: The equation to convert from pounds to ounces is: ounces = pounds *16 public class Weight {
private double pounds;
public void setPounds(double inputPounds){
pounds = inputPounds;
}
public double getPounds(){
return pounds;
}
privateconvertToOunces(double pounds){
return pounds *16;
}
public void printInOunces(){
System.out.printf("%.1f ounces
", convertToOunces());
}
}

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!