Advertisement
Guest User

Un desafío para los interesados

a guest
Sep 8th, 2011
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Dim num As Long, j As Long
  2. num = 389438
  3. For j = 0 To 10
  4.     If num = 0 Then Exit For
  5.     Debug.Print num Mod 10
  6.     num = num \ 10
  7.     j = 0
  8. Next
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement