Assignemnt #33
Code
/// Name: Daniel Nguyen
/// Period: 6
/// Program Name: WhatIf Program
/// File Name: WhatIf.java
/// Date Finished: 9/9/2015
// The if statement states that if a certain action is true then everything inside the brackets will be printed
// The purpose of the curly brackets is to show what will happen if the requirements of the if statement are provided
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." );
}
}
}
Picture of the output