Question: 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
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)
I need help with writing the pseudocode corectly
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
