Question: above not pictured is the iostream using std stuff. written in C++ im getting an error message trying to solve 4. why wont it run

 above not pictured is the iostream using std stuff. written in
C++ im getting an error message trying to solve 4. why wont
above not pictured is the iostream using std stuff. written in C++ im getting an error message trying to solve 4. why wont it run
4. Negotiating a consumer loan is not always straightforward. One form of loan is the discount installment loan, which works as follows. Suppose a loan has a face value of $1,000, the interest rate is 15%, and the duration is 18 months. The interest is computed by multiplying the face value of $1,000 by 0.15, to yield $150. That figure is then multiplied by the loan period of 1.5 years to yield $225 as the total interest owed. That amount is immediately deducted from the face value, leaving the consumer with only $775. Repayment is made in equal monthly installments based on the face value. So the monthly loan payment will be $1,000 divided by 18, which is $55.56. This method of calculation may not be too bad if the consumer needs $775 dollars, but the calculation is a bit more complicated if the consumer needs $1,000. Write a program that will take three inputs: the amount the consumer needs to receive, the interest rate, and the duration of the loan in months. The program should then calculate the face value required in order for the consumer to receive the amount needed. It should also calculate the monthly payment. Your program should allow the calcu- lations to be repeated as often as the user wishes.

ovo Search P Sign in A . ConsoleApplication . - Search Ero Edit View Project Build Debug Test Analyze Tools Extensions Window Help 3. 2.C Debug - x86 Local Windows Debugger. bleApplication1.cpp Error List = x Output e Solution - 1 Error AO Warnings O 2 Messages Build IntelliSense Code Description binary'<:no operator found which takes a left-hand operand of type> C2678 'std-basic ostream>' for there is no acceptable conversion) could be built-in C++ operator (int int) while trying to match the argument list (std:basic_ostreamcchar stochartraits char>>, std:basic_ostream> ines Project Console Application Console Application ConsoleApplication.cpp Console Application.cpp 25 26 Console Application Console Application.cpp 26 View Project Build 2. Debug Test Debug Analyze 6 Tools . Extensions Window Local Windows De Help ) Search (C t Error Ust Output tion.cpp X blication TL mm - (Global Scope) double loanAmount; double intrestRate; double duration; double faceIntrestRate; double amount; double monthly Payment; double faceDuration: char choice; doc cout > loanAmount; cout > intrestRate; cout > duration; faceIntrestRate = intrestRate / 100; faceDuration = duration / 12.0; amount = loanAmount / (1 - faceIntrestRate * faceDuration); monthlyPayment = amount / duration; cout > choice; ) while (choice == 'y' || choice == 'Y'); system("PAUSE"); o te to search

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!