Assignemnt #33 What If

Code

    ///Name: Morgan Kaplan
    ///Period: 5
    ///Project Name: What If
    ///File Name: WhatIf.java

public class WhatIf
{
	public static void main( String[] args )
	{
		// The if makes it so the line only prints if the numbers comply with the statement
        // The purpose of the curly brackets in the if is to group and 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 Output

Assignment 33