package cn.edu.bjut.chapter3; public class Triangle extends Shape { double height, width; public Triangle(double height, double width) { this.height = height; this.width = width; } @Override double area() { return (height * width / 2); } }