Sha256: c6aebfb602ccd914bed390abe31c97a7c3e3971fcae17d16128d9184d50ac84b

Contents?: true

Size: 191 Bytes

Versions: 2

Compression:

Stored size: 191 Bytes

Contents

require "a1412tk_bmi/version"

module A1412tkBmi

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

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
a1412tk_bmi-0.0.3 lib/a1412tk_bmi.rb
a1412tk_bmi-0.0.2 lib/a1412tk_bmi.rb