const float triangle(const float width, const float height)
{
    float area; // area of the triangle 

    area = width * height / 2.0;
    return (area);
}

