Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,926 questions

51,859 answers

573 users

How to swap two numbers in VB.NET

4 Answers

0 votes
Imports System

Public Class Program
	Public Shared Sub Main()
        Dim x As Integer = 345
        Dim y As Integer = 10
		
        Dim tmp As Integer = x
        x = y
        y = tmp
		
        Console.Write(x & " " & y)
    End Sub
End Class





' run:
'
' 10 345
'

 



answered Aug 22, 2022 by avibootz
0 votes
Imports System

Public Class Program
	Public Shared Sub Main()
        Dim x As Integer = 345
        Dim y As Integer = 10
		
        x = x + y
        y = x - y
        x = x - y 
		
        Console.Write(x & " " & y)
    End Sub
End Class





' run:
'
' 10 345
'

 



answered Aug 22, 2022 by avibootz
0 votes
Imports System

Public Class Program
	Public Shared Sub Main()
        Dim x As Integer = 4892
        Dim y As Integer = 11
		
        x = x * y
        y = x / y 
        x = x / y 
		
        Console.Write(x & " " & y)
    End Sub
End Class





' run:
'
' 11 4892
'

 



answered Aug 22, 2022 by avibootz
0 votes
Imports System
 
Public Class Program
    Private Shared Sub Swap(Of T)(ByRef a As T, ByRef b As T)
        Dim temp As T = a
        a = b
        b = temp
    End Sub
 
    Public Shared Sub Main(ByVal args As String())
        Dim x As Double = 3.14
        Dim y As Double = 2.98
          
        Swap(x, y)
          
        Console.Write(x & " " & y)
    End Sub
End Class
 
 
 
 
' run:
'
' 2.98 3.14
'

 



answered Nov 6, 2022 by avibootz

Related questions

1 answer 554 views
1 answer 218 views
2 answers 180 views
1 answer 100 views
1 answer 155 views
1 answer 128 views
128 views asked Sep 24, 2021 by avibootz
1 answer 164 views
...