< Back

Get-TriangleSide

Mon Jan 13, 2020 7:39 pm

NAME Get-TriangleSide



SYNOPSIS

Gets the sides of a triangle





SYNTAX

Get-TriangleSide -LengthOfSideA <Double> -LengthOfSideB <Double> [<CommonParameters>]



Get-TriangleSide -LengthOfSideA <Double> -LengthOfSideC <Double> [<CommonParameters>]



Get-TriangleSide -LengthOfSideB <Double> -LengthOfSideC <Double> [<CommonParameters>]





DESCRIPTION

Gets the sides of a triangle, using the law of Pythagoras:



a^2 + b^2 = c^2





PARAMETERS

-LengthOfSideA <Double>

The Length of Side A



Required? true

Position? named

Default value 0

Accept pipeline input? false

Accept wildcard characters? false



-LengthOfSideB <Double>

The Length of Side B



Required? true

Position? named

Default value 0

Accept pipeline input? false

Accept wildcard characters? false



-LengthOfSideC <Double>

The Length of Side C



Required? true

Position? named

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