Rework the code to utilize at least 4 methods to perform the functionality of the application.
For example:
• TotalInterestPaid( )
• CalculateMonthCharges (month, numPayments )
• DeterminePaymentAmount ( )
• ReturnAmortizationSchedule( )
• CalculateMonthCharges (month, numPayments )
Your Main() will call Methods you created and those methods will call other methods that either you
created or are built-in like WrieLine(), ReadLine() etc.. Push as much of the work out of the Main() to
other Methods and keep method calls in the Main().