Assignemnt #85 and Fizz Buzz

Code

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

Picture of the output

Assignment 1