Assignment #33 and What If

Code

    /// Name: Ali Kurland
    /// Period: 6
    /// Program Name: What If
    /// File Name: WhatIf.java
    /// Date Finished: 9/24/2015   
    
    /// 1. The if causes the code under it to run only if the statement in parentheses next to the if is true. If the statement is false, the code below the if is skipped and does not run.
    /// 2. The curly braces in the if statement separate the portion of code that should run only if the conditions proposed by the if statement are met from the rest of the code.
    
    public class WhatIf
    {
    	public static void main( String[] args )
    	{
    		int people = 20;
    		int cats = 20;
    		int dogs = 15;
    
    		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

Assignment 33