Assignemnt #33 and What If
Code
///Name: Daniel Tiffany-Appleton
///Period: 7
///Program Name:What If
///File Name: WhatIf
///Date Finished: 10/2/15
public class WhatIf
{
public static void main( String[] args )
{
int people = 20;
int cats = 20;
int dogs = 15;
//The if causes the statement under it to tell if the action or variables are true than do the action in the code
if ( people < cats )
{
System.out.println( "Too many cats! The world is doomed!" );
}
//the braces act as a way to show what to do if the statement is true and what to ignore if the statement is false
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