Skip to content

Instantly share code, notes, and snippets.

@computingfreak
Created July 21, 2019 03:47
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 computingfreak/a3b75b6d44c7a4772cd07b90a2a4aa44 to your computer and use it in GitHub Desktop.
Save computingfreak/a3b75b6d44c7a4772cd07b90a2a4aa44 to your computer and use it in GitHub Desktop.
import java.io.*;
import java.util.*;
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