1 2 public class Square extends Shape{ 3 4 private int length; 5 6 public Square(int length) { 7 this.length = length; 8 } 9 10 public double getArea() { 11 return Math.pow(length,2); 12 } 13 14 }