find the average of many numbers using pseudocode

sum=0

for i = 1..n
sum += value[i]
end for
avg = sum/n

I’d be glad to check your answers

To find the average of many numbers using pseudocode, you can follow these steps:

1. Initialize a variable `total` to 0, which will store the sum of all the numbers.
2. Initialize a variable `count` to 0, which will keep track of the number of inputs.
3. Request the user to enter the first number and store it in a variable `input`.
4. While `input` is not an empty value:
a. Add `input` to `total`.
b. Increment `count` by 1.
c. Request the user to enter the next number and update the `input` variable.
5. Calculate the average by dividing `total` by `count` and store it in a variable `average`.
6. Output the value of `average`.

Here's the pseudocode for finding the average of many numbers:

```
total = 0
count = 0

input = read_number() // Request the user to enter the first number
while input is not empty:
total = total + input
count = count + 1
input = read_number() // Request the user to enter the next number

average = total / count
write_output(average)
```

In the above pseudocode, `read_number()` is a function to read a number from the user, and `write_output(value)` is a function to display the value on the output interface. You can replace these functions with the appropriate input/output methods in your programming language.