Computer Science, asked by Ambarsariya, 10 months ago

write a program that ask your height in cm and then convert it into feet and inches.

This question belong to the python programming language

Best answer will be marked as brainleist

Answers

Answered by gurukulamdivya
2

Answer:

cm=int(input("Enter the height in centimeters:"))

inches=0.394*cm

feet=0.0328*cm

print("The length in inches",round(inches,2))

print("The length in feet",round(feet,2))

Similar questions