Assignment #33

Code

    /// Name: Jonathan Stine
    /// Period: 5
    /// Program Name: Boolean5
    /// File Name: Boolean5.java
    /// Date Finished: 10/23/2015
    
    public class Boolean5
    {
    	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 makes it so the println only displays if the if statements are true.
            /// The curly braces are to separate the code that is to run if the if statement is true.
    	}
    }
    
 
    

Code Output