Write a program in C++ to solve the following problem:
A sailboat costs $75,000. You pay 15% down and amortize the rest
with equal monthly payments over a 10-year period. If you must pay
7.75% compounded monthly, what is your monthly payment? How much
interest will you pay?
???= ?? ×?1− (1+?)−?
?= ??
?=??
??? ⇒???????? ??????? (????ℎ?? ???????) ?? ⇒??????? ????? (????
??????) ? ⇒?????? ???? ?? ???????? ? ⇒??????????? ???????? ?
⇒????
Note: Do not declare any constants.Input: Cost of Sailboat,
Downpayment, Rate of Interest, and TimeOutput: Monthly Payment and
Interest
#include <iostream>
#include <cmath>
using namespace std;
int main() {
double sailBoatCost = 75000, rate = 0.0775;
double remainingPayment = 0.85 * sailBoatCost;
double monthlyPayment = remainingPayment * (1.0 + rate / 12.0) * (1.0 - 1 / (1.0 + rate / 12.0)) / (1.0 - pow(1.0 / (1.0 + rate / 12.0), 120.0));
cout << "Monthly payment is " << monthlyPayment << endl;
cout << "Total payments paid will be " << (120.0 * monthlyPayment) << endl;
cout << "Total interest paid is " << ((120.0 * monthlyPayment) - remainingPayment) << endl;
return 0;
}
Write a program in C++ to solve the following problem: A sailboat costs $75,000. You pay...
please help me solve this question
АЛ A sailboat costs $28.664. You pay 10% down and amortize the rest with equal monthly payments over a 10 year period. If you must pay 6.6% compounded monthly, what is your monthly payment? How much interest will you pay? Monthly payments: 5 (Round to two decimal places. interest: $(Round to two decimal places.)
A sailboat costs $30,316. You pay 5% down and amortize the rest with equal monthly payments over a 15-year period. If you must pay 7.8% compounded monthly, what is your monthly payment? How much interest will you pay? Monthly payments: $____ Interest: $____ (Please square, label, or circle the answer)
A sailboat costs $18,865. You pay 25% down and amortize the rest with equal monthly payments over a 13-year period. If you must pay 8.1% compounded monthly, what is your monthly payment? How much interest will you pay? Monthly payments: $____ Interest: $____ (Please square, label, or circle the answer)
A sailboat costs $30,357. You pay 10% down and amortize the rest with equal monthly payments over a 8-year period. If you must pay 7.8% compounded monthly, what is your monthly payment? How much interest will you pay? Monthly payments: $____ Interest: $____ (Please square, label, or circle the answer)
thanks
A sailboat costs $23,852. You pay 15% down and amortize the rest with equal monthly payments over a 11-year period. If you must pay 6.6% compounded monthly, what is your monthly payment? How much interest will you pay? Monthly payments: $ (Round to two decimal places.) Interest: $ (Round to two decimal places.)
A sailboat costs $27,422. You pay 10% down and amortize the rest with equal monthly payments over a 8-year period. If you must pay 6.6% compounded monthly, what is your monthly payment? How much interest will you pay? Monthly payments: $ (Round to two decimal places.) Interest: $ (Round to two decimal places.)
A sailboat costs $18.453. You pay 15% down and amortize the rest with equal monthly payments over a 12-year period. If you must pay 7.2% compounded monthly what is your monthly payment? How much interest will you pay? Monthly payments: $ (Round to two decimal places.) Interest: $(Round to two decimal places.) ime
A sailboat costs $28,035. You pay 10% down and amortize the rest with equal monthly payments over a 12-year period. If you must pay 8.4% compounded monthly, what is your monthly payment? How much interest will you pay? Monthly payments: $____ Interest: $____ Please do not round any numbers. (Please square, label, or circle the answer)
Please answer quickly!!! A sailboat costs $28,035. You pay 10% down and amortize the rest with equal monthly payments over a 12-year period. If you must pay 8.4% compounded monthly, what is your monthly payment? How much interest will you pay? Monthly payments: $____ Interest: $____ Please do not round any numbers. (Please square, label, or circle the answer)
Can you please show all work/steps on how to solve this problem?
The correct answers are included in the screenshot.
X Instructor-created question Question is graded. Grade: 0 of 1 pt Submit Grade Question Help A sailboat costs $21,455. You pay 15% down and amortize the rest with equal monthly payments over a 8-year period. If you must pay 6.9% compounded monthly, what is your monthly payment? How much interest will you pay? Monthly payments: $ 247.73 (Round to two...