PROGRAMMING AND CODE
Assignemnt #33
Code
/// Name: Justin Li
/// Period 7
/// Program Name: WhatIf
/// File Name: WhatIf.java
/// Date Finished: 10/19/15
public class WhatIf
{
public static void main( String[] args )
{
int people = 20;
int cats = 30;
int dogs = 15;
//curly braces marks a block of code to execute
//if statements perform the action if the conditions are true
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." );
}
}
}