Assignemnt #33

Code


/// Name: Sam Menar
/// Period: 6
/// Program Name: WhatIf
/// File Name: WhatIf.java
/// Date Finished: 10/23/15

public class WhatIf
{
	public static void main( String[] args )
	{
		int people = 20;
		int cats = 30;
		int dogs = 15;

        //1. The if statement decides if the code is true or false and if it's true it will print it, if it's                           false the code will be ignored.
        //2. The curly braces control where the if statement is applied and where it isn't applied.
        
		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 13