1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
viktelen [127]
3 years ago
14

Instructions Write a program that inputs the length of two pieces of fabric in feet and inches (as whole numbers) and prints the

total. Sample Run Enter the Feet: 3 Enter the Inches: 11 Enter the Feet: 2 Enter the Inches: 5 Sample Output Feet: 6 Inches: 4
Physics
1 answer:
diamong [38]3 years ago
4 0

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))

You might be interested in
The diver on the diving board is 10 meters high and has a mass of 0.050kg, what is his GPE?
sveta [45]

Answer:

<h2>4.9 J</h2>

Explanation:

The gravitational potential energy of a body can be found by using the formula

GPE = mgh

where

m is the mass

h is the height

g is the acceleration due to gravity which is 9.8 m/s²

From the question we have

GPE = 10 × 9.8 × 0.05

We have the final answer as

<h3>4.9 J</h3>

Hope this helps you

6 0
3 years ago
In Rutherford's experiment, which of the following proved that the
vampirchik [111]

Answer:

b) the alpha particles were found to be attracted to the nucleus

Explanation:

5 0
3 years ago
Unit 12 Exam
lapo4ka [179]

Answer:

You increase the acceleration of the car.

6 0
3 years ago
What are particles of carbon called?
Ainat [17]
Co2 or greenhouse gas
8 0
3 years ago
Which situation is the best analogy for the doppler effect?
Rudiy27
The best scenario to describe the doppler effect would be listening to the siren of a passing ambulance or fire truck

then it is coming towards you, the pitch is higher, it gets higher as it approaches and peaks as it gets right in front of you. then it drop at once when it passes you and continues to drop till it fades away. this is a classic descrption of the doppler effect
8 0
3 years ago
Other questions:
  • You observe a distant galaxy. You find that a spectral line of hydrogen that is shifted from its normal location in the visible
    9·1 answer
  • The distance versus this plot for a particular object shows a quadratic relationship. Which column of distance data is possible
    8·1 answer
  • An object with a mass of 21 kilograms is lifted through a distance of 7 meters how much work is done
    15·1 answer
  • A vertical scale on a spring balance reads from 0 to 200 N . The scale has a length of 11.0 cm from the 0 to 200 N reading. A fi
    9·1 answer
  • Two small objects each with a net charge of Q (positive) exert a force of magnitude F on each other. We replace one of the objec
    9·1 answer
  • A box of mass 21 kg sits on an inclined surface with an angle of 10°. What is
    10·2 answers
  • If 3.2*10^20 electrons pass through a wire in 4s, what would be the electrical current in the wire?
    7·1 answer
  • Table 2.4 shows how the dispacement of a runner changed during a sprint race. Draw a dispacement-time graph to show this data, a
    6·1 answer
  • A homeowner is thinking about replacing his filament bulbs with LED bulbs.
    10·2 answers
  • 9.1 x 105 – 7.2 x 105<br> =
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!