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

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,104 questions

40,777 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 463 views
1 answer 105 views
2 answers 85 views
1 answer 38 views
1 answer 49 views
...