Respuesta :

Answer:

In Python:

x = 0

for i in range (99, 0, -1):

   x += i

   print(x)

Explanation:

It just works.

fichoh

The required program written in python 3 which prints the running total of integers from 99 backwards is as follows :

sum = 0

#initialize the sum of the integers to 0

for num in range (99, 0, -1):

#loop through integers starting from 99 and take 1 step backward

sum+=num

#add the iterated value to the number in the sum variable and assign the value to the same variable.

print(sum)

#display the value of sum after each iteration.

Therefore, the output of the program is attached below.

Learn more :https://brainly.com/question/19136274

Ver imagen fichoh
RELAXING NOICE
Relax