Write an algorithm and flow chat to print the first ten even numbers

Assuming that 0 is the 1st even number,

n=0
for i=1..10
print n
n += 2
next i