Assignemnt #33 and WhatIf

Code

  /// name: Leila Ordukhani
  /// period: 6
  /// program name: Twenty-Second Program
  /// file name: WhatIf.java
  /// date finished: 10/8/15
  public class WhatIf
{
	public static void main( String[] args )
	{
		int people = 20;
		int cats = 30;
		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." );
		}
System.out.println( "The if changes the code under it so that it is only correct if the statement qulifies the if statement" );
System.out.println( "The curly braces in the if statement justify that the if is only for that specific statement below" );

	}
}
         

Picture of the output

Assignment 33