input a list of positive numbers terminated by 0 into a array. find the mean of the numbers in the array and output the result. use a subprogram to input numbers a function to find the mean and a subprogram to output the result.

you are rude to say that I have to change my career to adminstarotor. That is not very nice.

Rude or not is a subjective comment, so you have the right to the freedom of expression.

In fact, an administrator is a highly prestigeous position. Why would anyone get offended by that?

All I wanted to say was if you don't actually get involved in actually programming, there is no hope you will succeed in the field.

I have yet to see a single programmer who has never programmed before.

nick, you have a lot of attitude for someone who is asking for free help.

(And you didn't even say if you needed pseudocode or working code in a particular language.)

Don't bother posting it now, because I won't help a bratty ingrate with a huge sense of entitlement.

Input a list of positive numbers , terminated by 0 into an array find the mean (average) of the numbers in the array and output the result. Use a subprogram to input the numbers, a function to find the mean and a subprogram to output the result. pseudecode language

To solve this problem, you can use the following steps:

1. Create a subprogram to input numbers: This subprogram will prompt the user to input positive numbers until they enter 0 to terminate the input. It will store these numbers in an array.

2. Create a function to find the mean: This function will take the array of numbers as input and calculate the mean by summing up all the numbers and dividing by the total number of elements in the array.

3. Create a subprogram to output the result: This subprogram will simply output the mean calculated by the function.

Here is an example implementation in Python:

```python
def input_numbers():
numbers = []
while True:
num = int(input("Enter a positive number (enter 0 to terminate): "))
if num == 0:
break
else:
numbers.append(num)
return numbers

def calculate_mean(numbers):
total = sum(numbers)
mean = total / len(numbers)
return mean

def output_result(mean):
print("The mean of the numbers is:", mean)

# Main program
numbers_array = input_numbers()
mean_value = calculate_mean(numbers_array)
output_result(mean_value)
```

You can run this code and input the positive numbers, one by one, until you enter 0 to terminate. The program will then calculate the mean of those numbers and display the result.

All programming problems will be responded if you

1. show your work, and
2. specify clearly what help you might need.

We will be pleased to help you debug, correct your pseudocode, help you find logic errors, etc.

Programming is a knowledge which is acquired by doing the work. If you don't get your fingers wet (and make lots of mistakes), you might as well change your career to administrator or something else.