Assignemnt #33 and What If
Code
/// Name: Kyle Ivy
/// Period: 5
/// Program Name: WhatIf
/// File Name: WhatIf.java
/// Date Finished: 10/21/2015
/// The If decides wether the statement is to be printed or not based on whether the if statement meets the given criteria
/// The purpose of the curly braces above and below the if statement is to isolate them in a certain static condition
public class WhatIf
{
public static void main( String[] args )
{
int people = 420;
int cats = 420;
int dogs = 69;
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." );
}
}
}
prog33.PNG