68.5k views
5 votes
Intro to CS edhesive 2.3 code practice question 2 answers

User Roarkz
by
4.9k points

2 Answers

1 vote

Answer:

ft=int(input("Enter the Feet: "))

inch=int(input("Enter the Inches: "))

ft2=int(input("Enter the Feet: "))

inch2=int(input("Enter the Inches: "))

fc=((ft + ft2)*12 + inch + inch2)//12

fc2=((ft + ft2)*12 + inch + inch2)%12

print("Feet: " + str(fc) + " Inches: " + str(fc2))

Step-by-step explanation:

Got it right.

User Mcwyrm
by
5.6k points
6 votes
I think this is code practice 2.3 question 2
Intro to CS edhesive 2.3 code practice question 2 answers-example-1
User Sinaesthetic
by
5.1k points