Module: A1412tkBmi

Defined in:
lib/a1412tk_bmi.rb,
lib/a1412tk_bmi/version.rb

Constant Summary collapse

VERSION =
"0.0.3"

Class Method Summary collapse

Class Method Details

.calc(height_cm, weight_kg) ⇒ Object



5
6
7
8
9
# File 'lib/a1412tk_bmi.rb', line 5

def self.calc(height_cm, weight_kg)
  height_m = height_cm / 100
  bmi = weight_kg / (height_m * height_m)
  bmi.round(1)
end