Assignment 85: Fizz Buzz

Code

    /// Name: Ryan McAteer
    /// Period: 5
    /// Program Name: Fizz Buzz
    /// File Name: Assignment85.java
    /// Date Finished: 2/26/16

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

Picture of the output

This Should Work