Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

User - Defined Functions During the tax season, every Friday, the J&J accounting firm provides assistance to people who prepare their own tax returns. Their

User - Defined Functions

During the tax season, every Friday, the J&J accounting firm provides assistance to people who prepare their own tax returns. Their charges are as follows:

If a person has low income (<= 25,000) and the consulting time is less than or equal to 30 minutes, there are no charges; otherwise, the service charges are 40% of the regular hourly rate for the time over 30 minutes.

For others, if the consulting time is less than or equal to 20 minutes, there are no service charges; otherwise, service charges are 70% of the regular hourly rate for the time over 20 minutes.

(For example, suppose that a person has low income and spent 1 hour and 15 minutes, and the hourly rate is $70.00. Then the billing amount is 70.00 * 0.40 * (45 / 60) = $21.00.)

Write a program that prompts the user to enter the hourly rate, the total consulting time, and whether the person has low income. The program should output the billing amount. Your program must contain a function that takes as input the hourly rate, the total consulting time, and a value indicating whether the person has low income. The function should return the billing amount. Your program may prompt the user to enter the consulting time in minutes.

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

#include #include

using namespace std;

// declare billingAmount function

int main() { double hourlyRate; double consultingTime; bool lowIncome; double yearlyIncome;

cout << fixed << showpoint << setprecision(2);

cout << "Enter yearly income: "; cin >> yearlyIncome; cout << endl;

// set lowIncome

cout << "Enter the hourly rate: "; cin >> hourlyRate; cout << endl;

cout << "Enter consulting time in minutes: "; cin >> consultingTime; cout << endl;

// call billingAmount

return 0; }

double billingAmount(double hRate, double consTime, bool lowInc) { // write your billingAmmount function here }

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

Beginning ASP.NET 2.0 And Databases

Authors: John Kauffman, Bradley Millington

1st Edition

0471781347, 978-0471781349

More Books

Students also viewed these Databases questions

Question

Explain the significance of employee selection.

Answered: 1 week ago

Question

Discuss the performance appraisal process.

Answered: 1 week ago