Advertisement
Guest User

Untitled

a guest
Dec 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1.  
  2. public class Square implements Shape
  3. {
  4. private double side;
  5.  
  6. public Square()
  7. {
  8. this(1);
  9.  
  10. }
  11. public Square(double side)
  12. {
  13. this.side=side;
  14. }
  15. public double area()
  16. {
  17. return side*side;
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement