Advertisement
Tolyamba

Untitled

Jan 24th, 2017
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.61 KB | None | 0 0
  1. class Money : Pair
  2.     {
  3.         protected int rubles, kopeks;
  4.         public int Rubles
  5.         {
  6.             get { return rubles; }
  7.             set { rubles = value; }
  8.         }
  9.  
  10.         public int Kopeks
  11.         {
  12.             get { return kopeks; }
  13.             set { kopeks = value; }
  14.         }
  15.  
  16.         public Money()
  17.             : base()
  18.         { rubles = 0; kopeks = 0; }
  19.  
  20.         public Money(int r, int k)
  21.             : base(r, k)
  22.         { rubles = r; kopeks = k; }
  23.  
  24.         public override string ToString()
  25.         {
  26.             return rubles + "p. " + kopeks + "kop. ";
  27.         }
  28.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement