Description
can you write the pseudo code of finding the largest number when you enter 10 numbers.

Explanation & Answer

A. DO THIS 10 times
B. GET the next number
C IF number > largest THEN
largest <- number
D. END OF LOOP
E.PRINT largest
