/** Box provides box-related methods.
 * @author Joel Adams, for Alice+Java
 */

public class Box {
	/** volume of a box (class method)
	 * @param length, the (double) length of the box
	 * @param width, the (double) width of the box
	 * @param height, the (double) height of the box
	 * @return the volume of a box with those dimensions
	 */
	public static double volume(double length, double width, double height) {
		return length * width * height;
	}
}
