Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Rectangle
- {
- private double length;
- private double width;
- public Rectangle(double l, double w)
- {
- length = l;
- width = w;
- }
- public double GetArea()
- {
- return length * width;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment