Question
Having difficult fixing my c++ project, either in c++11 or c++14. Prompt: One large chemical company pays its salespeople on a commission basis. The salespeople
Having difficult fixing my c++ project, either in c++11 or c++14.
Prompt:
One large chemical company pays its salespeople on a commission basis. The salespeople each receive $200 per week plus 9 percent of their gross sales for that week. For example, a salesperson who sells $5000 worth of chemicals in a week receives $200 plus 9 percent of $5000, or a total of $650. Develop a C++ program that uses a while statement to input each salespersons gross sales for last week and calculates and displays that salespersons earnings. Process one salespersons figures at a time.
Requirements:
create 2 separate files for this homework assignment. The Sales.h file contains the class Sales. Then the main.cpp
Your program should have one member data named grossSales.
Your program should have a constructor, a get and a set member function for the data.
The result salaries must be displayed in 2 decimal places
Sample run of what it should look like:
Enter sales in dollars (-1 to end):5000 //input
Salary is: 650.00 //output
Enter sales in dollars (-1 to end): 5678 //input
Salary is: 711.02 //output
Enter sales in dollars (-1 to end):-1
Here is what I have and I am having trouble fixing my errors or what I need to fill in:
cpp file:
#include
Sales.h file:
class setmember public: { int grosssales; unsigned int salesCounter=0; int initialsalary=200; int getmember(); int setmember(grossales); }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started