Write a program that will calculate the tangent of angles from 0 degrees
to 86 degrees in five degree increments. You will NOT use
math.tangent
; instead use
math.sine
and math.cosine
.
Please remember the following:
sin
, cos
and tangent
expect the angle'
in radiansmath.radians
(xInDegrees)
.