VBA/Excel/Access/Word/Math Functions/Tan — различия между версиями

Материал из VB Эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Версия 19:33, 26 мая 2010

Tan(number) returns The tangent of the angle specified by number (measured in radians).

   <source lang="vb">

Sub mathDemo16()

  Debug.Print tan(2)

End Sub

</source>
   
  


Tan() Returns the tangent of a number (radians).

   <source lang="vb">

Sub tanDemo()

   tan (3.14159265 / 4)

End Sub

</source>