Assignment 33, What If
Code
///Name: Stella Koliavas
///Period: 5
///Program Name: What If
///File Name: WhatIf.java
///Date Finshed: 10/20/15
public class WhatIf
{
public static void main( String[] args )
{
int people = 20;
int cats = 20;
int dogs = 15;
if ( people < cats ) // it tells the line underneath it to print only if the variables fit the math in a true way
{
System.out.println( "Too many cats! The world is doomed!" );
}
//the {} tells the writer of code that that line corresponds only with whats above it
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