public class Bmi { public int calculate(float height, float weight) { return (int) (weight / (height*height)); } }