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

1 answer

Assuming that 0 is the 1st even number,
n=0
for i=1..10
print n
n += 2
next i