Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //BMI calculator
- def bMI(mass: Int , weight: Double) =
- val result = mass/(weight*weight)
- println(s"BMI : $result")
- bMI(110,1.8034)
- // celcious and ferhenhit calculator
- def temparature ( ferhenhit: Int) : Unit =
- val c = (ferhenhit-32)*5/9
- println(s"I am in fever & my boody temparature is $c degree celcius")
- temparature (104)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement