7.9k views
5 votes
Write a program to enter the numbers till the user wants and at the end it should display the count of positive, negative and zeros entered by the user.

User Lourdes
by
8.0k points

1 Answer

3 votes

Final answer:

A program can be written to accept numbers until the user decides to stop, keeping a count of positive, negative, and zero values entered.

An example using Python has been provided for this purpose, utilizing loops and conditionals.

Step-by-step explanation:

The program that continuously accepts numbers from the user and provides a count of positive numbers, negative numbers, and zeros entered, until the user decides to stop the input process.

This can easily be done using programming structures such as loops and conditionals.

Below is an example of how such a program could look in Python:

positive_count = 0
negative_count = 0
zero_count = 0
while True:
number = int(input("Enter a number (or type 'stop' to finish): "))
if number == 'stop':
break
elif number > 0:
positive_count += 1
elif number < 0:
negative_count += 1
else:
zero_count +=1
print("Positive numbers count:", positive_count)
print("Negative numbers count:", negative_count)
print("Zero count:", zero_count)

In this program, the user is prompted to enter numbers until they type 'stop'. As numbers are entered, the program increments the respective counter for positive, negative, or zero values. Finally, it displays the count of each type of number that has been entered.

User Arash Rohani
by
7.7k points