Assignemnt #33 and What If

Code

      ///Name: Dakota Donahue
      ///Period: 5
      ///Project Name: What If
      ///File Name: WhatIf
      ///Date: 8/1/2015
      
      ///1. If the variables satisfy the "if" statement, the command following the "if" is carried out. In this case a statement is printed.
      ///2. The curly braces surround whatever is carried out if the "if" statement that precedes them is satisfied
      
      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!" );
      		}
      
      		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." );
      		}
      	}
      }
    
ALettertoYourself