Answer:
We divided the figure into 1 triangle and 2 rectangles.
Adding up the area of them, we get the total area:
A = 14 x (10 + 8 + 12 - 16)/2 + 8 x 5 + 6 x (12 + 8)
= 258 (yd2)
Hope this helps!
:)
Answer:
No
Step-by-step explanation:
96+88+74+76=334/4=83.5
96+88+74+76+100=434/5=86.8
The average can't be higher than a 91%
25+30x=65+20x
30x=40+20x
10x=40
x=40/10
x=4
x is for the number of sessions
ANSWER: 4 sessions
It will cost 145$ for both gyms after 4 sessions.
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