Guest User

Untitled

a guest
Apr 25th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. Dim J As Integer
  2. For J = 1 To 2
  3. For I = 1 To 3
  4. Dim N As Long
  5. Console.WriteLine("Value of N: {0}", N)
  6. ' N has block scope in VB.NET
  7. N = N + I
  8. Next
  9. Next
Add Comment
Please, Sign In to add comment