Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.9K
2 Posted Topics
The program needs to get loan amount, loan term, and loan interest rate from the user and then use those same numbers to create a function that calculates the monthly payment of the loan using monthlyPayment = principal * rate / ( 1.0 – pow(rate + 1, -term)); I've come …
I have the same assignment.. I've come this far. After I get the amounts from the user, how do I use what they inputed to save in the program so I can use those same answers in the monthlyPayment function for the calculation? Any help is greatly appreciated! #include <iostream> …
The End.