Assignemnt #33 and What If

Code

    /// Name: Brian Phillips
    /// Period: 5
    /// Program name: Making Decisions with If Statements
    /// File Name: AgeMessages.java
    /// Date Finished: 10/21/2015
public class WhatIf
{
    public static void main( String[] args )
    {
        int people = 20;
        int cats = 20;
        int dogs = 15;
        //The "if" statements will apply to the code under it only if the statement after "if" is true.
        //The curly braces make sure the "if" statement only applies to the code in the braces.
        //Now cats are equal to people so no cat messages will appear
        if ( people < cats )
        {
            System.out.println( "Too many cats! The world is doomed!" );
        }
        
        if ( people > cats )
        {
            System.out.println( "Not many cats! The world is saved!" );
        }
        
        if ( people < dogs )
		{
			System.out.println( "The world is drooled on!" );
		}

		if ( people > dogs )
		{
			System.out.println( "The world is dry!" );
		}

		dogs += 5;

		if ( people >= dogs )
		{
			System.out.println( "People are greater than or equal to dogs." );
		}

		if ( people <= dogs )
		{
			System.out.println( "People are less than or equal to dogs." );
		}

		if ( people == dogs )
		{
			System.out.println( "People are dogs." );
		}
	}
}
    

Picture of the output

WhatIf.html