module A1508kiIka

Constants

VERSION

Public Class Methods

getBMI(height, weight) click to toggle source

Your code goes here…

# File lib/a1508ki_ika.rb, line 5
def self.getBMI(height, weight)
  weight / (height / 100.0  * height / 100.0)
end