Assignemnt #33 What if

Code

    ///Name: Prooz Fereydouni
    ///Period: 7
    ///Project Name: Making Decisions with If Statements
    ///File Name: WI.java
    ///Date: 10/14/2015
  
public class WI
{
	public static void main( String[] args )
	{
		int people = 20;
		int cats = 20;
		int dogs = 15;
        // The if statements check if the statement in the parantheses is correct; if so, the program runs the line(s) in the curly brackets.
        //The curly brackets mark the statements that are conditional.
		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

assignment33