Answer:
S,Z,F
Step-by-step explanation:
i just did it
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
Answer:
a. 56
b. 72
c. 64
Step-by-step explanation:
Answer:
22.25 ft long
if you add 10.5 with 11.75 you'll get 22.25
The coordinates of four points on the line are (0,-5), (3,-3), (6,-1) and (9,1)
<h3>How to determine the coordinates?</h3>
The given parameters are given as:
- Slope, m = 2/3
- y-intercept, c = -5
The equation is represented as:
y = mx + c
So, we have:
y = 2/3x -5
When x = 0, we have;
y = 2/3 * 0 -5 = -5
When x = 3, we have;
y = 2/3 * 3 -5 = -3
When x = 6, we have;
y = 2/3 * 6 -5 = -1
When x = 9, we have;
y = 2/3 * 9 -5 = 1
Hence, the coordinates of four points on the line are (0,-5), (3,-3), (6,-1) and (9,1)
Read more about linear equations at:
brainly.com/question/14323743
#SPJ1