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

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

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

Sin(number) returns The sine of the angle specified by number (measured in radians).

 
Sub mathDemo14()
   Debug.Print Sin(2)
End Sub
"



Sin() Returns the sine of a number (radians).

 
Sub mathF8()
    Debug.Print Sin(3.14159265 / 2)
End Sub