This is a C program. I want you to convert it to a C++ program. Also provide a screenshot that it is still working.
This is a C program. I want you to convert it to a C++ program. Also provide a screenshot that it is still working.
Here is the program to be converted:
/* Write a program that will compute and display sales commission of
a Sales Representative given as input his total sales. The sales commission
is computed as 15% of the total sales. Moreover, a bonus of 1000.00 is given
if the computed sales commission exceeds 20,000.00. */
#include <stdio.h>
#include <conio.h>
int main()
{
float TS,SC;
clrscr();
printf("Enter your Total Sales: Php ");
scanf("%f",&TS);
SC=TS*0.15;
if (SC<=20000.00)
printf("The Sales Commission is Php %0.2f\n",SC);
else
{
printf("For Exceeding Php 20000.00 Sales Commission\nYou are entitled for Php 1000.00 bonus!!!\n\n");
SC=SC+1000.00; // SC+=1000.00
printf("Your Total Sales Commission is Php %0.2f\n",SC);
}
getch();
return(0);
}
Step by step
Solved in 3 steps with 1 images