Assignemnt #33: What If

Code

    /// Name: Kelsey Lieberman
    /// Period 5
    /// Program Name: WhatIf
    /// File Name: WhatIf.java
    /// Date Finished: 10/13/2015
    
public class WhatIf
{
	public static void main( String[] args )
	{
		int people = 30;
		int cats = 30;
		int dogs = 25;

		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." );
		}
	// The "if" sets a conditional to the code under it so that the code is only run if the conditional is true //
    // The curly braces separate the "if" code from the rest of the code so that it can be run separately or be included or excluded. //
    }
}

    

Picture of the output

Assignment 33