Created
February 18, 2018 16:24
-
-
Save arrbxr/862d12e2a2330850e9e4b4473efff2a8 to your computer and use it in GitHub Desktop.
Find Factorial no
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private sub Command1_click() | |
dim i as integer | |
for i = 1 to 100 | |
if i mod 7 = 0 and i mod 5 <> 0 then | |
print i | |
end if | |
Next | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment