Programming Assignment #33

Code

/// Name: Dylan Sleeper
/// Period: 6
/// Program Name: What if
/// File Name: WhatIf.java
/// Date Finished: 10/22/2015

public class WhatIf
{
	public static void main( String[] args )
	{
		int people = 30;
		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." );
		}
		
		//If the if statement is true, the code under it will execute it.
		
		//Only the code within the curly brace will be run if the if statement is true.
	}
}


  

Outputs

Assignment 15