A local frozen yogurt shop uses the following class to calcu…
A local frozen yogurt shop uses the following class to calculate the price of a customer’s order. Each yogurt object has a variable to keep track of the ounces. You can add yogurt objects together to get a sum total of ounces for two or more orders of yogurt. Use the following class definition to answer the next few questions. class Yogurt { private: float ounces_; public: Yogurt(float oz) : ounces_(oz) {} float GetPrice() const; Yogurt operator+(const Yogurt& yogurt); friend ostream& operator