How to calculate divide and modulo of integers in VB.NET

1 Answer

0 votes
Imports System

Public Class Program
	Public Shared Sub Main()
        Dim a As Integer = 5
        Dim b As Integer = 3
		
        Dim div As Integer = a \ b
        Dim modulo As Integer = a Mod b
		
        Console.WriteLine(div)
        Console.WriteLine(modulo)
		
        Console.WriteLine()
		
        Console.WriteLine(CInt((100 \ 26)))
        Console.WriteLine(CInt((100 Mod 26)))
    End Sub
End Class





' run:
'
' 1
' 2
' 
' 3
' 22
' 

 



answered Jan 7, 2022 by avibootz

Related questions

...