Q:

(The BMI class) Add the following new constructor in the BMI class:

0

(The BMI class) Add the following new constructor in the BMI class:

/** Construct a BMI with the specified name, age, weight,
* feet, and inches
*/
public BMI(String name, int age, double weight, double feet,
double inches)

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

public class UseBMIClass {
	public static void main(String[] args) {
		BMI bmi1 = new BMI("Kim Yang", 18, 145, 5, 10);
		System.out.println("The BMI for " + bmi1.getName() + " is "
			+ bmi1.getBMI() + " " + bmi1.getStatus());

		BMI bmi2 = new BMI("Susan King", 215, 70);
		System.out.println("The BMI for " + bmi2.getName() + " is "
			+ bmi2.getBMI() + " " + bmi2.getStatus());
	}
}

BMI.java

/*********************************************************************************
* (The BMI class) Add the following new constructor in the BMI class:            *
*                                                                                *
* /** Construct a BMI with the specified name, age, weight,                      *
* * feet, and inches                                                             *
* */                                                                            /*
* public BMI(String name, int age, double weight, double feet,                   *
*    double inches)                                                              *
*********************************************************************************/
public class BMI {
	private String name;
	private int age;
	private double weight;	// In pounds
	private double height;	// In inches
	public static final double KILOGRAMS_PER_POUND = 0.45359237;
	public static final double METERS_PER_INCH = 0.0254;
	public static final int INCH_PER_FOOT = 12;

	public BMI(String name, int age, double weight, double height) {
		this.name = name;
		this.age = age;
		this.height = height;
		this.weight = weight;
	}

	public BMI(String name, double weight, double height) {
		this(name, 20, weight, height);
	}

	/** Construct a BMI with the specified name, age, weight,
	* feet, and inches
	*/
	public BMI(String name, int age, double weight, double feet,
		double inches) {
		this(name, age, weight, inches + feet * 12);
	}

	public double getBMI() {
		double bmi = weight * KILOGRAMS_PER_POUND /
			((height * METERS_PER_INCH) * (height *  METERS_PER_INCH));
		return Math.round(bmi * 100) / 100.0;
	}

	public String getStatus() {
		double bmi = getBMI();
		if (bmi < 18.5)
			return "Underweight";
		else if (bmi < 25)
			return "Normal";
		else if (bmi < 30)
			return "Overweight";
		else
			return "Obese";
	}

	public String getName() {
		return name;
	}

	public int getAge() {
		return age;
	}

	public double getWeight() {
		return weight;
	}
	
	public double getHeight() {
		return height;
	}
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now