iOS developer with over than 11 years of extensive experience working on several projects with different sized startups and corporates. View all posts by Malek →
1 Comment
//: Playground – noun: a place where people can play
import UIKit
import PlaygroundSupport
func calcBmi(weight : Double, height : Double) -> Double{
let BMI = weight/pow(height,2)
return BMI
}
var bmiResutl = calcBmi(weight: 60, height: 1.83)
print(bmiResutl)
//: Playground – noun: a place where people can play
import UIKit
import PlaygroundSupport
func calcBmi(weight : Double, height : Double) -> Double{
let BMI = weight/pow(height,2)
return BMI
}
var bmiResutl = calcBmi(weight: 60, height: 1.83)
print(bmiResutl)