Define and use Array Integer : Integer « Data Types « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Data Types » IntegerScreenshots 
Define and use Array Integer
Define and use Array Integer
  
Imports System


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

        For i As Integer = To 10
            squares(i= i * i
        Next i

        Dim txt As String = ""
        For i As Integer = To 10
            Console.WriteLine (squares(i).ToString )
        Next i

    End Sub

End Class
  

           
         
    
  
Related examples in the same category
1.Compare Integer value and output their relation
2.Integer Initialize and assignmentInteger Initialize and assignment
3.Integer calculationInteger calculation
4.And, Or, Xor and Not on Integer And, Or, Xor and Not on Integer
5.Integer Value DemoInteger Value Demo
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.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.