Assignemnt #33 and What If

Code

  ///Name: Ben Borglin
 ///Period: 6
 ///Program Name: What if
 ///File Name: WhatIf.java
 ///Date Finished: 9/24/15

public class WhatIf
{
	public static void main( String[] args )
	{
		int people = 20;
		int cats = 10;
		int dogs = 15;

		if ( people < cats )
		{
			System.out.println( "Too many cats!  The world is doomed!" );
		}
        
        cats = 25;

		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 statements if proven true will print the next line.
        ///If the if statement is proven it will print the lines in the braces
		}
	}
}
 
    

Picture of the output

Assignment 33