Assignment #33 What If

Code

    /// Name: John Huh
    /// Period: 6
    /// Program Name: What If
    /// File Name: WhatIf.java
    /// Date Finished: 9/30/2015
    
        public class WhatIf
        {
            public static void main( String[] args )
            {
                int people = 20;
                int cats = 20;
                int dogs = 15;
            
                // The code below the "if" statements is output onto powershell if the statement is true
            
                // The purpose of the curly braces is if the "if" statement is true, then the info in the braces of the specific if statement will be shown on powershell
              
                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 1