Asked by alisa
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.
Answers
Answered by
Damon
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
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
There are no AI answers yet. The ability to request AI answers is coming soon!
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.