Assuming the ocean's level is currently rising at about 1.5 millimeters per year, create an application that displays the number of millimeters that the ocean will have risen each year for the next 10 years.

1 answer

Primitive flow chart:

j is year
mm is millimeters
set mm = 0
set j = 0
point 100
j = j + 1
mm = mm + 1.5
print j and mm
if j = 10 quit
go back to point 100
quit