How to swap the first and last elements of an array in VB.NET

1 Answer

0 votes
Imports System

Public Class Program
	Public Shared Sub Main()
        Dim array As Integer() = {7, 8, 9, 0, 3}
        Dim x As Integer = array(0)
        array(0) = array(array.Length - 1)
        array(array.Length - 1) = x

        For Each n As Integer In array
            Console.Write(n & " ")
        Next
    End Sub
End Class



' run:
'
' 3 8 9 0 7
'

 



answered Aug 11, 2021 by avibootz

Related questions

1 answer 192 views
1 answer 134 views
1 answer 228 views
1 answer 127 views
...