Determine if the result of integer X divided by integer Y is an integer.
X=55 and Y=11
I understand VB uses / to represent division, but what command provides the program logic of it?
X=55 and Y=11
Code:
Sub is_integer() Dim X As Integer Dim Y As Integer X=55 Y=11 End Sub
Comment