Skip to content

Instantly share code, notes, and snippets.

@arrbxr
Created February 18, 2018 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arrbxr/862d12e2a2330850e9e4b4473efff2a8 to your computer and use it in GitHub Desktop.
Save arrbxr/862d12e2a2330850e9e4b4473efff2a8 to your computer and use it in GitHub Desktop.
Find Factorial no
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