Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. for (i=1; i<101; i++) {
  2. if (i % 3 == 0 && i % 5 ==0) {
  3. print "CracklePop"
  4. }
  5. else
  6. print "Crackle"
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement