Write an algorithm, pseudocode and draw a flowchart of finding body mass index (BMI) for men based on international system of unites (SI).
BMI = weight(kg)/height²(m)
Begindeclare Number hight declare Number weightdeclare Number BMIDisplay "Enter the Hight(m) :"input heightDisplay "Enter the weight(Kg) :"input weightBMI=weight/(height*height)End
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Begin
need an explanation for this answer? contact us directly to get an explanation for this answerdeclare Number hight
declare Number weight
declare Number BMI
Display "Enter the Hight(m) :"
input height
Display "Enter the weight(Kg) :"
input weight
BMI=weight/(height*height)
End