Fizz

 public class fizz
{
    public static void main (String [] args)
    {
        int x;
        
        for ( x = 1; x <= 100; x = x+1)
        {
            System.out.println( x );
            
            if ( x % 15 == 0 )
            {
                System.out.println(" Fizzbuzz");
            }
            
            else if ( x % 5 ==0 )
            {
                System.out.println(" Buzz");
            }
            
            else if ( x % 3 == 0 )
            {
                System.out.println( "Fizz");
            }
            else if( x % 1 == 0 )
            {
                System.out.println( x );
            }
                
        }
    }
}
    

Picture of the output