mjc65

class

May 5th, 2020
813
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.23 KB | None | 0 0
  1. class Rectangle
  2.     {
  3.         private double length;
  4.         private double width;
  5.  
  6.         public Rectangle(double l, double w)
  7.         {
  8.             length = l;
  9.             width = w;
  10.         }
  11.  
  12.         public double GetArea()
  13.         {
  14.             return length * width;
  15.         }
  16.     }
Advertisement
Add Comment
Please, Sign In to add comment