Program #33

Code

   
    /// Name: Afaf Nabeeha
    /// Period: 7
    /// Program Name: What If
    /// File Name: WhatIf.java
    /// Date Finished: 10/14/2015 public class WhatIf

           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." );
          		}
          	}
          }
          // 1.  I think the If statements require the computer to determine whether or not the statement below is true or not.  If it is, it prints out something.  If it is not, then it prints out something else.
          // 2.  I think the purpose of the curly bracket is to check to see if the value is matching and if it is then to print out a message.
            
            
    

Picture of the output

Assignment 33