class BMICalculator main() //Declarations num weight num height weight = getPlayerWeight() height = getPlayerHeight() calBMI = getCalBMI (weight, height) displayBMI(calBMI) output “Welcome to the Body Mass Index Calculator” return num getPlayerWeight() //Declarations num playerWeight output “Please enter your weight in lbs. : ” input playerWeight return playerWeight num getPlayerHeight() //Declarations num playerHeight output “Please enter your height in inches : ” input playerHeight return playerHeight num getCalBMI(num weight, num height) //Declarations num calculatedBMI calBMI = (weight/(height*height)) * 703 return calculatedBMI displayBMI (num displayResults) //Declarations num displayResults displayResults = calBMI output “Your body mass index (BMI) is: ” calBMI return endClass
Thanks


Sign In
Create Account


Back to top









