Mega Code Archive

 
Categories / VB.Net Tutorial / Operator
 

Power calculator

Option Strict On  Imports System  Module Module1     Sub Main( )        Dim value As Integer = 5        Dim power As Integer = 4        Console.WriteLine("{0} to the {1}th power is {2}", _           value, power, value ^ power)     End Sub  End Module 5 to the 4th power is 625