Skip to content

Instantly share code, notes, and snippets.

@sledge-1
Created June 28, 2016 06:25
Show Gist options
  • Save sledge-1/40648bc47a7b319b85cdfe10cd955745 to your computer and use it in GitHub Desktop.
Save sledge-1/40648bc47a7b319b85cdfe10cd955745 to your computer and use it in GitHub Desktop.
for(int x = 1; x <= 100; x++){
if (x % 3 ==0 && x % 5 == 0){
System.out.println ("fizzbuzz");}
else if (x % 3 == 0);
{
System.out.println ("fizz");
}
else if (x % 5 == 0);
{
System.out.println ("buzz");
}
else;
{
System.out.println (x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment