Write an algorithm, pseudocode and draw a flowchart of finding body mass index (BMI) for men based on international system of unites (SI)
belongs to collection: flow chart and psuedocode assignement
All Answers
total answers (1)
belongs to collection: flow chart and psuedocode assignement
total answers (1)
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