Question: Create a new program that will ask a user to enter a number repeatedly. This program will calculate 2 averages based on the sign of

Create a new program that will ask a user to enter a number repeatedly. This program will calculate 2 averages based on the sign of the inputted numbers: ave_pos (average of all positive numbers) and ave_neg (average of all negative numbers). The program will stop when the user enters a ‘0’.Before writing the program in C code, write a pseudocode to describe your approach to this problem.

Here are the examples of the output (input is in italic and bold):

Please enter an integer: 1

Please enter an integer: -1

Please enter an integer: 2

Please enter an integer: -2

Please enter an integer: 0

Positive average: 1

Negative average: -1

Please enter an integer: -1

Please enter an integer: -2

Please enter an integer: -3

Please enter an integer: 0

Negative average: -2

Step by Step Solution

3.37 Rating (150 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

To design a program that calculates the average of positive and negative numbers separately and stop... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!