package cn.edu.bjut.chapter3; public class Rectangle3 extends Shape { double length, width; public Rectangle3(double length, double width) { this.length = length; this.width = width; } public double area() { return (length * width); } }