Implement the operator+ operator Takes a reference to a Yog…

Implement the operator+ operator Takes a reference to a Yogurt object as a parameter Adds the ounces of each object together Returns a Yogurt object with the updated ounces  To be written as if in the implementation (.cpp) file Don’t forget: Associate the function with the class (3 points) Correct use of the parameters/variables (3 points) Correct calculations & data types (4 points)

Use the Yogurt class in the main.cpp file by writing the fol…

Use the Yogurt class in the main.cpp file by writing the following code: Create a Yogurt object called y1 that has 4 ounces Create another Yogurt object called y2 that has 7 ounces Create a third Yogurt object called y3. This one will be used to hold the results of the ounces from y1 and y2 added together. Display y3. Don’t forget Use the general constructor to create objects (4 points) Use the operator+ (3 points) Use the operator