Skip to content

Latest commit

 

History

History

calculate-bmi

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
  • Completed at: 2023-01-09T05:06:54.990Z

  • Completed languages: ruby

  • Tags: Fundamentals

  • Rank: 8 kyu

Description

Write function bmi that calculates body mass index (bmi = weight / height2).

if bmi <= 18.5 return "Underweight"

if bmi <= 25.0 return "Normal"

if bmi <= 30.0 return "Overweight"

if bmi > 30 return "Obese"