Assignment #33 and WhatIf

Code

      /// Name: Jason Kim
      /// Period: 7
      /// Program Name: WhatIf
      /// File Name: WhatIf.java
      /// Date Finished:10/1/15
      
      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.");
              }
          }
      }
      //The if activates the code under it only if the condition inside the parenthesis next to "if" is satisfied.
      //The purpose of the curly braces in the if statement is to subordinate the codes under the if statement so that the code 
      inside the curly braces would only activate under satisfied condition. Codes outside of the curly braces are not affected by the if condition.

    

Picture of the output

Assignment33