Respuesta :
Answer:
The code is written in python in the explanation section below
Explanation:
a_feet = int(input("Input the feet of the first fabric: "))
a_inches = int(input("input the size in inches for the first piece of fabric: "))
b_feet = int(input("input the size in Feet for the second piece of fabric: "))
b_inches = int(input("Enter the size in Inches for the second piece of fabric: "))
sum_inches = a_inches + b_inches
inches_to_feet = sum_inches // 12
rem_from_div = sum_inches % 12
sum_feet = a_feet + b_feet + inches_to_feet
print("Feet: {} Inches: {}".format(sum_feet, rem_from_div))
The program accepts the seperate feet and inch lengths of two fabrics and displays the sum of the length of fabrics in feets and inches. The program written in python 3 goes thus :
feet_1 = int(input('length in feets : '))
#promts user to enter feet length of fabric 1
inch_1 = int(input('length in inch : '))
#inch length of fabric 1
feet_2 = int(input('length in feets : '))
#feet length of fabric 2
inch_2 = int(input('length in inch : '))
# inch length of fabric 2
inch_sum = inch_1 + inch_2
#sum of the inches
inch_left = inch_sum%12
#remainder in inches after converting to feets
inch_to_feet = inch_sum // 12
#whole number of the converted inch sum
feet_sum = feet_1 + feet_2 + inch_left
#total sum of the feet length
print('Feet : %d Inches : %d' %(feet_sum, inch_left))
# display the sum
A sample run of the program and the script ls attached.
Learn more :https://brainly.com/question/16102577

