Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 1.02 KB

area.md

File metadata and controls

38 lines (32 loc) · 1.02 KB

Module: Area Functions

This module contains functions that will find the area of a shape based on parameters given as input to the functions down below.

Area of a Rectangle

rectangle(l, w);

Area of a Parallelogram

parallelogram(b, h);

Area of a Triangle

triangle(b, h);

Area of a Trapezoid

trapezoid(h, b1, b2);

Area of a Circle

circle(r);