วันอาทิตย์ที่ 20 กันยายน พ.ศ. 2558

Lab4x_BMI

def setup():
     w = int(input ())
     h = int(input ())
     calcu_bmi(w,h)
def calcu_bmi(w,h): 
     h2 = (h/100)**2 
     BMI = w/h2
     print("Weight = ",w," Kg.")
     print("Height = ",h," cm.")
     print("Value Of BMI =%.2f"%BMI)
setup()

ไม่มีความคิดเห็น:

แสดงความคิดเห็น