Advertisement
veronikaaa86

02. Biggest Num

Sep 13th, 2022
1,031
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Sub LiveDemo()
  2.     Dim firstNum, secondNum As Integer
  3.     firstNum = 20
  4.     secondNum = 2
  5.    
  6.     If firstNum > secondNum Then
  7.         Debug.Print firstNum
  8.     Else
  9.         Debug.Print secondNum
  10.     End If
  11. End Sub
  12.  
  13.  
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement