Assignemnt #30

Code

  /// Name: Sam Wilson
  /// Period: 6
  /// Program Name: watif
  /// File Name: watif.java
  /// Date Finished: 10/22/2015
 
    public class watif
    {
    	public static void main( String[] args )
    	{
    		int people = 20;
    		int cats = 20;
    		int dogs = 15;
    
            //The if causes the code to look over the equation and if the equation is true the code/statement is printed.
            
            //Because if can be applied to a code that runs a complex application the curly braces allow room for that code.
            
            
            
    		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 30