Power calculator : Arithmetic Operator « Operator « VB.Net Tutorial






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








3.2.Arithmetic Operator
3.2.1.Shortcut assignment operators
3.2.2.Power calculator
3.2.3.Boolean value with And and Or