Assignment #33 What If

Code

    
    /// Name: Lacey Reese 
    /// Period: 5
    /// Program Name: WhatIf
    /// File Name: WhatIf.java
    /// Date Finished 10/15/2015
    
public class WhatIf
{
	public static void main( String[] args )
	{
		// The if in the program makes it so the line only prints if the numbers/integers relate with the statement.
        // The purpose of the curly brackets in the if statements is to match the statements with the if
        
        int people = 20;
		int cats = 10;
		int dogs = 15;

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

		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

// Sort of hard Assignment 33