Math.Cos : Math « System « VB.Net by API






Math.Cos

  
Public Class Tester
    Public Shared Sub Main
        Dim X As Single
        Dim Y As Single

        X = CSng( Math.Cos(100))
        Y = CSng( Math.Sin(100))

        Console.WriteLine(X)
        Console.WriteLine(Y)
        
    End Sub

End Class

   
    
  








Related examples in the same category

1.Math.Acos
2.Math.Asin
3.Math.Atan
4.Math.Atan2
5.Math.Floor
6.Math.Max
7.Math.PI
8.Math.Pow
9.Math.Round
10.Math.Sign
11.Math.Sin
12.Math.Sqrt