COSC 1315 - Fundamentals of Programming
Allan Kochis

Programming Assignment 5


Using the payment computed in Assignments 2,3,4, this assignment is to produce a loan repayment schedule. like this: Implement a C++ program based on your IPO from Assignment 4. That requests the principle, interest and term. And prepares a payment schedule like shown.

I suggest that you use a while loop like:
     int iNumber=1;

     while (iNumber <= iNumberofPayments) {

          your logic

          iNumber++;
     }