Advertisement
veronikaaa86

13. MultiplicationTable

Sep 20th, 2022
1,801
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Sub MultiplicationTable()
  2.     For firstNum = 1 To 10
  3.         For secondNum = 1 To 10
  4.             Dim product As Integer
  5.             product = firstNum * secondNum
  6.            
  7.             Debug.Print firstNum & " * " & secondNum & " = " & product
  8.         Next secondNum
  9.     Next firstNum
  10. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement