Advertisement
mjc65

abrst2

Mar 28th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class Rectangle: Polygon  
  2. {    
  3.     public Rectangle(double length, double width)    
  4.     {      
  5.         Length = length;      
  6.         Width = width;    
  7.     }    
  8.     public override double GetArea()  
  9.     {      
  10.         return Width * Length;    
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement