Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please in C programming and same output. Problem 1 (35 points): Amortization Schedule Write a C program that creates a loan payout schedule. The program

Please in C programming and same output. image text in transcribed
image text in transcribed
image text in transcribed
Problem 1 (35 points): Amortization Schedule Write a C program that creates a loan payout schedule. The program will work for any loan with a payback time S35 years. The interest rate is calculated daily using a daily update formula Amount rt Todays Payment Amoun owed e 2.71828182845905 Amount owed [0] is the initial loan amount r is the daily interest rate. Interest rates are usually given as an annual percentage rate (APR). r in the above formula is APR 100x365,242 since there are 365.242 days per year, and APR is a percentage; r is the decimal rate per day. t in the above formula is 1, since we are updating the amount owed every day TodaysPayment is the amount paid each day. This value will be 0 for 29 days and on the 30th day this value wi tain the monthly payment amou The program will use 3 arrays: 1) Time: this array shows time increments of 1365.242 years: Timelil 2) Amount. As stated above, the first element contains the initial loan amount. Each owed consecutive shows how the loan amount changes every day 3) Amount This array shows the cumulative amount payed. payed Amount payed lil Amount payedli 1] Todays Payment Note: The array should be long enough to hold 35 years worth of calculations Follow the flow chart on the next page to create your C program

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advances In Databases And Information Systems Uropean Conference Adbis 2020 Lyon France August 25 27 2020 Proceedings Lncs 12245

Authors: Jerome Darmont ,Boris Novikov ,Robert Wrembel

1st Edition

3030548317, 978-3030548315

More Books

Students also viewed these Databases questions

Question

whom?

Answered: 1 week ago

Question

Describe Balor method and give the chemical reaction.

Answered: 1 week ago

Question

How to prepare washing soda from common salt?

Answered: 1 week ago

Question

Explain strong and weak atoms with examples.

Answered: 1 week ago

Question

Explain the alkaline nature of aqueous solution of making soda.

Answered: 1 week ago

Question

=+When and under what circumstances are contracts renegotiated?

Answered: 1 week ago

Question

=+Are the contracts enforceable?

Answered: 1 week ago