Skip to content

Instantly share code, notes, and snippets.

@smnatale
Last active June 4, 2020 22:04
Show Gist options
  • Select an option

  • Save smnatale/b8fd61ca418b05cdca2a80812f39ad24 to your computer and use it in GitHub Desktop.

Select an option

Save smnatale/b8fd61ca418b05cdca2a80812f39ad24 to your computer and use it in GitHub Desktop.
Codecademy Challenge - FizzBuzz
public class FizzBuzz{
public static void main(String[] args){
for (int i=1; i <= 100; i++){
if (i%3==0 && i%5==0){
System.out.println("FizzBuzz");
} else if (i%3==0){
System.out.println("Fizz");
} else if (i%5==0){
System.out.println("Buzz");
} else{
System.out.println(i);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment