The pseudocode, an algorithm, that accepts the weight and height of a person is illustrated below:
Declare Real weight, height, BMI, numerator, denominator
Display "This program will calculate a person's Body Mass Index (BMI)."
Call getWeight ( )
//Get height of person
Call getHeight ( )
//Calculate BMI
Call calculateBmi ( )
End module
// The getWeight module will accept weight of person.
Module getWeight ( )
Display "Enter the weight of person."
Input weight
End module
// The getHeight module will accept height of person
Module getHeight ( )
Display " Enter height of person."
Input height
End module
// The calculateBmi module will calculate the person's Body Mass Index.
Module calculateBmi ( )
Set numerator = weight x 703
Set denominator = height X height
Set BMI = numerator/denominator
Display " The BMI of the person is", BMI
End module
Learn more about pseudocode on:
https://brainly.com/question/24953880
#SPJ1