127k views
4 votes
Write a pseudocode algorithm that ask a user to enter three numbers. The program should calculate and print their average

User Mithat
by
3.9k points

1 Answer

2 votes

Answer:

BEGIN

INPUT first_number, second_number, third_number

average = (first_number + second_number + third number)/ 3

PRINT average

END

Step-by-step explanation:

That is the simplest answer one can create

User Cesar Flores
by
3.2k points