Answer: 62 - T
Step-by-step explanation:
I think it is 62 - T because Stephanie is 62 inches and it says that her brother is shorter which I believe it means that you have to subtract.
For it to double its price the price has to be +100% more, and every year you get +2.4%, so you do:
100/2.4≈ 42 years or 41.66666667.. years.
Answer:
Step-by-step explanation:
<u>Given ratio</u>
- 1/8 pound ⇔ 25 square feet
<u>To find </u>
<u>Divide both sides by 25</u>
- 1/8÷25 pounds ⇔ 25÷25 square feet
- 1/200 pounds ⇔ 1 square foot
N+(n+1)+(n+2)+(n+3)+(n+4)+(n+5)=270
We use these terms to represent the first six consecutive integers in the sequence
Now we group like terms:
6n+15=270
Minus 15 from both sides of the equation
6n=255
n=42.5 which is not an integer
Is this a joke question?
Besides that, the 2nd number will be 43.5
The program is an illustration of loops
<h3>What are loops?</h3>
Loops are program statements that are used to perform repetition
<h3>The main program</h3>
The program written in Python, where comments are used to explain each line is as follows:
#This initializes sum to 0
summ = 0
#This gets input for the first number
num = int(input())
#This is repeated while num is not -1
while num!= -1:
#This calculates the sum
summ+=num
#This gets input for the num
num = int(input())
#This prints the sum
print(summ)
Read more about loops at:
brainly.com/question/16397886