我们正在学习while循环,我不知道如何在这个问题中做到这一点:
在一所大学,全日制学生的学费是每学期6000美元。据宣布,未来五年的学费每年将增加2%。设计一个带有while循环的程序,显示未来五年的预计学期学费金额。
我通常会这样做
Module main ( )
Declare Integer total = 0
Declare Integer counter
Set tuition = 6000
For counter = 1 To 5
Set tuition = 2 * tuition + tuition * .02
End For
Display “The amount you pay in 5 years of tuition is “, tuition
End Module