Short Programs
Do the following short programs:
- Read the file that you created in the insurance assignment and display the information
on a form. There should be a button to let you move through all of the records on the
file.
- Have the user enter a starting balance and a rate. Use a For loop to calculate
compound interest (compounded monthly) at the rate for a 12 month period. For each pass
through the loop, you are calculating the interest and then adding it to the balance so
that the next pass will work with the increased balance.
- Modify my minor, intermediate and major break sample so that when you press the button
you see all of the information at once as opposed to having to press the button for each
iteration. Use a DO loop to accomplish this.