< Back

Get-TrianglePerimeter

Mon Jan 13, 2020 7:38 pm

NAME Get-TrianglePerimeter



SYNOPSIS

Gets the perimeter of a triangle





SYNTAX

Get-TrianglePerimeter [-LengthOfSideA] <Double> [-LengthOfSideB] <Double> [-LengthOfSideC] <Double>

[<CommonParameters>]





DESCRIPTION

Gets the perimeter of a triangle, using the simple equation:



P = a + b + c





PARAMETERS

-LengthOfSideA <Double>

The Length of Side A



Required? true

Position? 1

Default value 0

Accept pipeline input? false

Accept wildcard characters? false



-LengthOfSideB <Double>

The Length of Side B



Required? true

Position? 2

Default value 0

Accept pipeline input? false

Accept wildcard characters? false



-LengthOfSideC <Double>

The Length of Side C



Required? true

Position? 3

Default value 0

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS





RELATED LINKS