Question: Using C++ 1.Design a function called GetDimensions with two arguments width and length that prompts for and receives width and length. 2.Design a function called

Using C++

1.Design a function called GetDimensions with two arguments width and length that prompts for and receives width and length.

2.Design a function called PrintDimensions with two arguments width and length that displays width and length.

3.Design a function called CalculateSalesTax with arguments purchaseAmt and salesTaxrate and salesTax that calculates sales tax.

For the following problems:

a. design a hierarchy chart

b. write code for main and all other modules

c. trace

1. Design an algorithm that will input sales volume records (until -1) from the user and printthe sales commission owing to each salesperson. Input includes salesperson number, name and that person's volume of sales for the month. The commission rate varies according to the sales volume:

On sales volume of :Commission rate (%):

$0.00-$200.005

$200.01-$1000.008

$1000.01-$2000.0010

$2000.01 and above12

Commission = commission rate * volume

Your program is to print the salesperson's number, name, volume of sales and calculated commission.

2. Design an algorithm that will prompt for and receive your current check book balance, followed by a number of financial transactions. Each transaction consists of a transaction code and a transaction amount. The code can be a 'D' for deposit or 'C' for check. Your program is to add each deposit amount to the balance and subtract each check amount. After each transaction is processed, a new running balance is displayed, with a warning message if the balance becomes negative. When there are no more transactions a 'Q' is entered as the transaction code. Your algorithm is to then display the initial and final balance along with the number of checks and deposits that were made.

#include

#include

#include

using namespace std;

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 Programming Questions!