Most financial institutions limit the amount of money you can borrow for a house to 36% of your gross earnings after debt is subtracted. Debt includes what you owe on credit cards and car payment. Write a complete C++ program to prompt the user and input gross earnings, amount of credit card debt, and amount of car payment. Compute net earnings (earnings – credit card debt - car payment) and the maximum allowed for a mortgage (.36 * net earnings). Use a preprocessor defined directive to set the percentage 36%. Format all numbers to have 2 decimal places to the right of the decimal point. Sample run shown in box below. Input earnings: 5400.95 Input credit card debt: 200.45 Input car payment: 250.50 Net earnings: 4950.00 Maximum mortgage: 1782.00 Press any key to continue . . .

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Most financial institutions limit the amount of money you can borrow for a house to 36% of your gross earnings after debt is subtracted. Debt includes what you owe on credit cards and car payment.

Write a complete C++ program to prompt the user and input gross earnings, amount of credit card debt, and amount of car payment. Compute net earnings (earnings – credit card debt – car payment) and the maximum allowed for a mortgage (.36 * net earnings). Use a preprocessor defined directive to set the percentage 36%. Format all numbers to have 2 decimal places to the right of the decimal point. 

**Sample run shown in box below.**

```
Input earnings: 5400.95

Input credit card debt: 200.45

Input car payment: 250.50

Net earnings: 4950.00

Maximum mortgage: 1782.00

Press any key to continue . . .
```
Transcribed Image Text:Most financial institutions limit the amount of money you can borrow for a house to 36% of your gross earnings after debt is subtracted. Debt includes what you owe on credit cards and car payment. Write a complete C++ program to prompt the user and input gross earnings, amount of credit card debt, and amount of car payment. Compute net earnings (earnings – credit card debt – car payment) and the maximum allowed for a mortgage (.36 * net earnings). Use a preprocessor defined directive to set the percentage 36%. Format all numbers to have 2 decimal places to the right of the decimal point. **Sample run shown in box below.** ``` Input earnings: 5400.95 Input credit card debt: 200.45 Input car payment: 250.50 Net earnings: 4950.00 Maximum mortgage: 1782.00 Press any key to continue . . . ```
Expert Solution
Step 1

PROGRAM:

//Header file

#include <iostream>

#include <iomanip>

 

//Defining preprocessor for percentage

#define percentage 36

 

//Using namespace

using namespace std;

 

//Defining main()

int main() {

 

  //Declaring variables

  float earnings, creditCardDebt, carPayment;

  float netEarnings, maxMortage;

 

  //Setting decimal precision

  cout<<fixed<<setprecision(2);

 

  //Getting input from the user

  cout<<"Input earnings: ";

  cin>>earnings;

  cout<<"Input credit card debt: ";

  cin>>creditCardDebt;

  cout<<"Input car payment: ";

  cin>>carPayment;

 

  //Computing net earnings

  netEarnings=earnings-creditCardDebt-carPayment;

  cout<<percentage;

 

  //Computing Maximum mortage

  maxMortage= (((float)percentage)/100) *netEarnings;

 

  //Printing result

  cout<<"Net earnings: "<<netEarnings<<endl;

  cout<<"Maximum mortage: "<<maxMortage<<endl;

}

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Mathematical functions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education