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






Math.Pow

  
Imports System.IO

Module Module1

    Sub Main()
        Console.WriteLine("Absolute value of -1 is " & Math.Abs(-1))
        Console.WriteLine("Square Root of 144 is " & Math.Sqrt(144))
        Console.WriteLine("Value for PI is " & Math.PI)
        Console.WriteLine("10 raised to the power of 2 is " & Math.Pow(10, 2))
        
    End Sub

End Module

   
    
  








Related examples in the same category

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