Computer Science, asked by sivathmikad, 9 months ago

write a python program to convert height(in feet and inches)to centimeters​

Answers

Answered by GoodHRS
2

Explanation:

Python Code:

print("Input your height: ")

h_ft = int(input("Feet: "))

h_inch = int(input("Inches: "))

h_inch += h_ft * 12

h_cm = round(h_inch * 2.54, 1)

print("Your height is : %d cm." % h_cm)

Answered by sheelayadav47198964
3

first you Mark me in brainliest

Similar questions