fork download
  1. Imports System
  2. Public Class Test
  3. Public Shared Sub Main()
  4. System.Console.WriteLine("The VBNet Divide 2 Numbers Program.")
  5. Dim x As Integer = 289
  6. Dim y As Integer = 17
  7. Dim z As Integer = (289 / 17)
  8. System.Console.WriteLine(x)
  9. System.Console.WriteLine(y)
  10. System.Console.Writeline("Dividing 289 By 17 Gives You The Following:")
  11. System.Console.WriteLine(z)
  12. End Sub
  13. End Class
Success #stdin #stdout 0.02s 20624KB
stdin
1
2
10
42
11
stdout
The VBNet Divide 2 Numbers Program.
289
17
Dividing 289 By 17 Gives You The Following:
17