Skip to content

Instantly share code, notes, and snippets.

@Gioyik
Created May 29, 2017 04:55
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 Gioyik/98dcc4645b602203c77973ba879ef54a to your computer and use it in GitHub Desktop.
Save Gioyik/98dcc4645b602203c77973ba879ef54a to your computer and use it in GitHub Desktop.
/*
Write a program that prints out the numbers 1 to 100 (inclusive). If the number is
divisible by 3, print Crackle instead of the number. If it's divisible by 5, print Pop. If
it's divisible by both 3 and 5, print CracklePop. You can use any language.
*/
for (var i=1; i<=100; i++) {
var a = !(i % 15) ? 'CracklePop' :
!(i % 3) ? 'Crackle' :
!(i % 5) ? 'Pop' :
i;
console.log(a);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment