I have highlighted the changes you need to make
Your code is correct but there are slight calculation
error.
start
   Declarations
          Â
num tuition
          Â
num year  Â
          Â
num TOTAL_YEARS = 10
          Â
num INCREASE_RATE
          Â
num CURR_TUTION = 20000
housekeeping()
    detailLoop()
     finish()
stop
housekeeping( )
          Â
output “Enter rate the tuition will increase each year>â€,
INCREASE_RATE
          Â
return
detailLoop()
   while year <= TOTAL_YEARS
  tuition = CURR_TUTION * ( 1 + INCREASE_RATE
)
          Â
output “Inâ€, year , “year(s) the tuition will beâ€,
tuition
          Â
year = year + 1
  CURR_TUTION = tution
endwhile
return
finish()
   output “End of programâ€
return