Preview:
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 %5 == 0){
     System.out.println("Buzz");
  } else if(i %3 == 0){
    System.out.println("Fizz");
  }else{
  System.out.println(i);
  }
    
     
  }
}


  }
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter