Conditions

if (day.equals("Saturday"))
{
    System.out.println("I am off to Woody's to have a Grolsch!");
} if (day.equals("Saturday"))
{
   System.out.println("I am off to Woody's to have a Grolsch!");
} else if (day.equals("Friday")) {
    System.out.println("I am off to Christie's to grab a Hudy Delight.");
} else {
    System.out.println("Back to work(s)");
}

Conditional Operation
Home

slide adapted from Internet II.