Computer Science, asked by sudeepmvm123, 6 months ago

Write pseudo code and draw flowchart to
accept numbers till the user enters 0 and then find their
average.

Answers

Answered by chaubeyritik35
5

Answer:

it's two tough to answer your question for me

Answered by renupandit98031
13

Answer:

Pseudocode is as follows:

Step 1: Set count = 0, sum = 0

Step 2: Input num

Step 3: While num is not equal to 0, repeat Steps 4 to 6

Step 4: sum = sum + num

Step 5: count = count + 1

Step 6: Input num

Step 7: Compute average = sum/count

Step 8: Print average

Similar questions