Integer Value Demo : Integer « Data Types « VB.Net






Integer Value Demo

Integer Value Demo
   
Imports System

Public Class MainClass
    
    Shared Sub Main(ByVal args As String())
        Dim n As Integer

        n = 16
        n += 10.23
        Console.WriteLine("Addition test..." & n, "Integer Math")

        n = 24
        n -= 2
        Console.WriteLine("Subtraction test..." & n, "Integer Math")

        n = 6
        n *= 10
        Console.WriteLine("Multiplication test..." & n, "Integer Math")

        n = 12
        n /= 6
        Console.WriteLine("Division test..." & n, "Integer Math")
    End Sub
End Class

           
         
    
    
  








Related examples in the same category

1.Compare Integer value and output their relationCompare Integer value and output their relation
2.Integer Initialize and assignmentInteger Initialize and assignment
3.Integer calculationInteger calculation
4.Define and use Array IntegerDefine and use Array Integer
5.And, Or, Xor and Not on Integer And, Or, Xor and Not on Integer
6.Integer: add, subtract, multiply and divideInteger: add, subtract, multiply and divide
7.Concatenate string and intConcatenate string and int
8.Append Integer data type values to a StringBuilder object.
9.Generic and nongeneric versions of the CompareTo method for Int16 value
10.Generic and nongeneric versions of the CompareTo method for Int32 value
11.Generic and nongeneric versions of the CompareTo method for Int64 value
12.Use the Sign(Integer) method to determine the sign of an Integer value and display it to the console.
13.Byte Structure Represents an 8-bit unsigned integer.
14.Convert Integer to Byte with CByte
15.Convert Integer to Byte with Convert
16.Parse a negative integer value
17.Int32 Structure Represents a 32-bit signed integer.
18.Integer variables
19.Int32 CompareTo Method
20.Int32 Equals Method
21.Int32.MaxValue Field Represents the largest possible value of an Int32. This field is constant.
22.Int32.Parse Method Converts string to 32-bit signed integer equivalent.
23.Int32.Parse Method (String, NumberStyles) Converts string to 32-bit signed integer equivalent.
24.Int32 Structure Represents a 32-bit signed integer.