Hi everyone, I am new to C++ and have no idea where to start with classes. I took my first programming class last semester and just started object oriented programming. I am new to classes and this is my first assignment. Any help with a link or anything would be greatly appreciated. Thanks in advance, Jillian
Create a program that displays the result of a sales transaction. The calculation requires three numbers. The first number represents the product price. The second number is the sales person commission. These two numbers should be added together. The third value represents a customer discount; subtract this third number from the result of the addition. Create two classes. The first class contains the method to do the calculation. The three numbers are passed to this method by a statement in the other class. The display is performed in the class that calls the calculation method. Save the programs as Transaction.cpp (driver program) and Commission.cpp (has the calculations).