Question: Exercise 2: Count the Numbers Write a program that prompts the user to enter a number n. Then, it asks the user to enter a

Exercise 2: Count the Numbers Write a program that prompts the user to enter a number n. Then, it asks the user to enter a sequence of numbers ending with -999. The program then displays the count of numbers in the sequence smaller than n, the count of numbers larger than n, and the count of numbers equal to n. Sample input / output: Enter the value of n: 56 Enter a number, -999 to stop: 67 Enter a number, -999 to stop: 23 Enter a number, -999 to stop: 19 Enter a number, -999 to stop: 88 Enter a number, -999 to stop: 56 Enter a number, -999 to stop: 12 Enter a number, -999 to stop: 85 Enter a number, -999 to stop: 55 Enter a number, -999 to stop: -999 There are 4 numbers less than 56 There are 3 numbers grater than 56 There are 1 numbers equal to 56
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
