This exercise requires designing a program which solves the problem described in the problem statement below. Provide comments in the pseudo-code and Java program as necessary.
Your solution must include these components:
1.Flowchart
2.Pseudo-code
3.Program coded
4.Program output
At one college, the tuition for a full-time student is $6000 per year. It has been announced that the tuition will increase by two percent each year for the next five years. Design a program with a loop that displays the projected tuition amount for the next five years.
Your program should include the following:
Expected Output
Your results should be similar to the following:
Your results should be similar to the following:
The tuition in year 1 is 6000.0
The tuition in year 2 is 6120.0
The tuition in year 3 is 6242.4
The tuition in year 4 is 6367.248
The tuition in year 5 is 6494.59296