Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class TGlass{
- public:
- TGlass(double capacity);
- double GetRemaining(double a, double b);
- double Drink(double c);
- double PourLiquid(double d);
- private:
- double liquid, volume;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement