Exercise
Division of two numbers
Objetive
Write a Visual Basic (VB.Net) program to print the result of dividing 24 by 5 on the screen.
Code
Imports System
Public Class Exercise3
Public Shared Sub Main()
System.Console.WriteLine(24 / 5)
End Sub
End Class