Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Help with this problem, here is my question, code and error i keep getting. #include# using namespace std; struct MonthlyBudget { float housing; float util;

Help with this problem, here is my question, code and error i keep getting.image text in transcribedimage text in transcribed

#include# using namespace std; struct MonthlyBudget { float housing; float util; float household; float expense; float transport; float food; float medical; float insurance; float entertain; float clothing; float misc; }m; void input(); void display(); int main() { //MonthlyBudget m1; input(); display(); } void input() { cout>m.housing; cout>m.util; cout>m.household; cout>m.expense; cout>m.transport; cout>m.food; cout>m.medical; cout>m.insurance; cout>m.entertain; cout>m.clothing; cout>m.misc; } void display() { coutt1)cout 11.11: Customer Accounts A student has established the following monthly budget 500.00 Housing 150.00 Utilities 65.00 Household 50.00 Expenses 50.00 Transportation 250.00 Food 30.00 Medical 100.00 In 150.00 Entertainment 75.00 clothing 50.00 Miscellaneous Write a program that has a MonthlyBudget structure designed to hold each of these expense categories. The program should pass the structure to a function that asks the user to enter the amounts spent in each budget category during a month. The program should then pass the structure to a function that displays a report indicating the amount over or under in each category, as well as the amount over or under for the entire monthly budget. NOTES: For each of the categories listed above, and in that order, the program prompts the user for the the amount spent on X: where X is a category from the above list (e.g. "Insurance Using the values read into the structure, the program generates a table with a heading and in each row ere are four items: the category (e.g. Housing followed by the value budgeted fo the cateoory (500.00 in the case of Housing), followed by the value that had been read in for that category, follow by the amount that the actual spent ed was over or under the category budget. Finally, after the table, is an indication of whether the student is over or under budget. Input Validation. None

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

Databases Organizing Information Digital And Information Literacy

Authors: Greg Roza

1st Edition

1448805929, 978-1448805921

More Books

Students also viewed these Databases questions

Question

LO4 Provide an overview of four challenges facing HR today.

Answered: 1 week ago