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.

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

To create an application that displays the number of millimeters the ocean will have risen each year for the next 10 years, you can use any programming language of your choice. In this example, let's use Python:

```python
# Define the rate of rise in millimeters per year
rise_rate = 1.5

# Create a loop to calculate the rise for each year
for year in range(1, 11):
rise = rise_rate * year
print(f"Year {year}: {rise} millimeters")
```

Explanation:
1. First, you need to define the rate of rise as a variable. In this case, it is set to 1.5 millimeters per year.
2. Then, you create a loop using the `for` statement to iterate over the range of years from 1 to 10 (inclusive).
3. Within the loop, you calculate the rise by multiplying the rise rate by the current year.
4. Finally, you print the result, displaying the year and the corresponding rise in millimeters.

By running this code, you will see the output for each year, displaying the number of millimeters the ocean will have risen.