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,955 questions

51,897 answers

573 users

How to write an algorithm that adds the odd digits of one number to the end of a second number in VB.NET

1 Answer

0 votes
Imports System

Public Class AddsOddDigitsIfNumberToOtherNumber_VB_NET
    Public Shared Sub Main(ByVal args As String())
        Dim n As Integer = 12734, second_n As Integer = 100
        
		Console.WriteLine(AddOddDigits(n, second_n))
    End Sub

    Public Shared Function AddOddDigits(ByVal n As Integer, ByVal second_n As Integer) As Integer
        Dim multiply As Integer = 1, odd As Integer = 0

        While n <> 0
            If n Mod 2 <> 0 Then
				odd = odd + (n Mod 10) * multiply
                multiply = multiply * 10
            End If

            n = n \ 10
        End While

        Return second_n * multiply + odd
    End Function
End Class



' run:
'
' 100173
'

 



answered Nov 5, 2024 by avibootz
...