30.5k views
0 votes
Write a program that inputs numbers and keeps a running sum. When the sum is greater than 200, output the sum as well as the count of how many numbers were entered. Sample Run Enter a number: 50 Enter a number: 11 Enter a number: 66 Enter a number: 23 Enter a number: 53 Sum: 203 Numbers Entered: 5

1 Answer

2 votes

Final answer:

The subject deals with writing a program that takes user inputs of numbers, adds them to a running total, and stops when the total is greater than 200. It then outputs the sum and the number of inputs taken.

Step-by-step explanation:

The question involves writing a computer program to perform a specific task. The task is to input numbers and calculate a running sum until the sum exceeds 200. Once this condition is met, the program should output both the total sum and the count of numbers entered.

A sample program written in Python could look like this:
sum = 0
count = 0
while sum <= 200:
number = int(input('Enter a number: '))
sum += number
count += 1
print('Sum:', sum)
print('Numbers Entered:', count)

This straightforward program continues to ask the user to input numbers, adding each to a running sum and incrementing a counter each time, stopping only when the sum is greater than 200. It then prints the specified outputs.

User Upendra Chaudhari
by
8.4k points