Skip to content

Instantly share code, notes, and snippets.

@evancasey
Created March 10, 2016 22:01
Show Gist options
  • Select an option

  • Save evancasey/5d44d34bc9ecc0241d1b to your computer and use it in GitHub Desktop.

Select an option

Save evancasey/5d44d34bc9ecc0241d1b to your computer and use it in GitHub Desktop.
CracklePop
(1 to 100).foreach { x =>
if (x % 3 == 0 && x % 5 ==0) println("CracklePop")
else if (x % 3 == 0) println("Crackle")
else if (x % 5 == 0) println("Pop")
else println(x)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment