In c++ format please
A company changes the commission rate for sales reps depending
on their total sales for the month. Their regular commission is 5%
(.05). However, if they sell at least $100,000, they get 7% (.07).
Ask the user for the sales amount this month and then calculate how
much to pay the sales rep this month.
Output 1:
Enter the sales amount for the month as a whole number, no commas
or $: [assume user types: 125000]
You met the $100,000 sales goal for the month. Your commission
is 7%
Your total commission on $125000 is: $8750
Output 2:
Enter the sales amount for the month as a whole number, no commas
or $: [assume user types: 60000]
You did not meet the $100,000 sales goal for the month. Your
commission is 5%
Your total commission on $60000 is: $3000
Hints and Notes:
1) Use an If/Else for this
2) The "100,000" portion of the output is a literal. I did not use the constant for this part of the output because I wanted to format the message nicely for the user.
#include<iostream>
using namespace std;
int main(){
double sales,commission=0;
cout<<"Enter the sales amount for the month as a whole number, no commas or $: ";
cin>>sales;
if(sales>=100000){
cout<<"You met the $100,000 sales goal for the month. Your commission is 7%\n";
commission = sales * 0.07;
}
else{
cout<<"You did not meet the $100,000 sales goal for the month. Your commission is 5%\n";
commission = sales * 0.05;
}
cout<<"Your total commission on $"<<sales<<" is: $"<<commission;
}
Note : Please comment below if you have concerns. I am here to help you
If you like my answer please rate and help me it is very Imp for me
Get Answers For Free
Most questions answered within 1 hours.