Assignment 33: What If

Code

    /// Name: Ryan McAteer
    /// Period: 5
    /// Program Name: What If
    /// File Name: Assignment33.java
    /// Date Finished: 10/1/15

class Assignment33 
{
      public static void main(String[] args) 
      {
            //1) If the conditions are met, whatever in the brackets will be performed//
            //2) The curly braces contain the and limit what the if statement does//
            
            int people = 20;
		    int cats = 15;
		    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." );
		    }
	 }
}
           
           
    

Picture of the output

Assignment 33