Pseudocode program to calculate Body Mass Index (BMI)
The Body Mass Index (BMI) is a quick way to assess your body size simply with your weight and height, regardless of your gender. Quickly calculate your BMI and find out which category you fall into.
The Body Mass Index (BMI) is the only index validated by the World Health Organization to assess an individual’s build and therefore health risks. The BMI makes it possible to determine whether one is the situation of thinness, overweight or obesity for example.
In this program we will calculate BMI. Body mass index (BMI) is a measure of body fat based on height and weight that applies to adult men and women.
Pseudocode– How to Calculate Body Mass index (BMI)
Write a program that calculates and displays a person’s body mass index (bmi) in pseudocode.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
BEGIN NUMBER height , weight , bmi DISPLAY "Enter person's information:" DISPLAY "height in inches? " INPUT height DISPLAY "weight in pounds? " INPUT weight bmi = weight / (height*height) * 703 IF bmi < 18.5 DISPLAY "underweight" ELSE IF bmi < 20 DISPLAY "normal" ELSE IF bmi < 30 DISPLAY "overweight" ELSE DISPLAY "obese" END IF END |
FlowChart– How to Calculate Body Mass index (BMI)

Write a program that calculates and displays a person’s body mass index (bmi) in pseudocode.