Advertisement
Hesiro

Untitled

Feb 25th, 2014
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. class TGlass{
  2.     public:
  3.         TGlass(double capacity);
  4.         double GetRemaining(double a, double b);
  5.         double Drink(double c);
  6.         double PourLiquid(double d);
  7.  
  8.  
  9.     private:
  10.         double liquid, volume;
  11.  
  12.  
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement