Guest User

Untitled

a guest
Jun 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. sum = 1
  2. TextWindow.Writeline("put a number in this bitch but dont make it to big")
  3. creative = TextWindow.ReadNumber()
  4. For i = 1 To creative
  5. sum = sum * i
  6. EndFor
  7. TextWindow.WriteLine(sum)
  8.  
  9. sum = sum - 1
  10.  
  11. checker:
  12. If(sum>= 1)then
  13. For j = creative To 1 Step -1
  14. If (Math.Remainder(sum,j) <> 0) Then
  15. sum = sum -1
  16. Goto checker
  17. EndIf
  18. If(j=1) then
  19. TextWindow.WriteLine(sum)
  20. sum = sum - 1
  21. Goto checker
  22. EndIf
  23. EndFor
  24. endif
Add Comment
Please, Sign In to add comment