Time estimate: 45 min.

2.4. Nested if Statements

If statements can be nested inside other if statements. Nested if statements consist of if, if-else, or if-else-if statements within if, if-else, or if-else-if statements. The Boolean expression of the inner nested if statement is evaluated only if the Boolean expression of the outer if statement evaluates to true.

if (boolean expression)
{   // This nested if is executed if outer if is true
    if (boolean expression)
    {
        statement;
    }
}

2.4.1. Multiway selection (else if)

A single if/else statement allows us to select between 2 branches of code. With nested if/else statements, we can pick between 3 or more branches of code. A multi-way selection (if-else-if) is used when there are a series of expressions with different segments of code for each condition. Multi-way selection is performed such that no more than one segment of code is executed based on the first expression that evaluates to true. If no expression evaluates to true and there is a trailing else statement, then the body of the else is executed.

Just add else if for each possibility after the first if, and else before the last possibility like below.

// 3 way choice with else if
if (boolean expression)
{
   statement1;
}
else if (boolean expression)
{
   statement2;
}
else
{
   statement3;
}

coding exercise Coding Exercise

Run the code below and try changing the value of x to get each of the three possible lines in the conditional to print.

Here is a flowchart for a conditional with 3 options like in the code above.

../_images/Condition-three.png

Figure 1: The order that statements execute in a conditional with 3 options: if, else if, and else

Note

Another way to handle 3 or more conditional cases is to use the switch and break keywords, but these will not be on the exam. For a tutorial on using switch see https://docs.oracle.com/javase/tutorial/java/nutsandbolts/switch.html.

exercise Check your understanding

coding exercise Coding Exercise

The else-if connection is necessary if you want to hook up conditionals together. In the following code, there are 4 separate if statements instead of the if-else-if pattern. Will this code print out the correct grade? First, trace through the code to see why it prints out the incorrect grade. Use the Code Lens button. Then, fix the code by adding in 3 else’s to connect the if statements and see if it works.

Finish the following code so that it prints “Plug in your phone!” if the battery is below 50, “Unplug your phone!” if it is above 100, and “All okay!” otherwise. Change the battery value to test all 3 conditions.

import static org.junit.Assert.*; import org.junit.*; import java.io.*;

public class RunestoneTests extends CodeTestHelper {

public RunestoneTests() {

super(“BatteryTest”, input1); // for Repl.it //super(“BatteryTest”); // for Book

}

private static String input1 = “93”;

@Test public void test01() {

String x = “95”; String result = “All okay!”; String output = getMethodOutputWithInput(“main”, x);

boolean passed = output.contains(result);

passed = getResults(

result, output, “Result for battery = “ + x, passed);

assertTrue(passed);

}

@Test public void test02() {

String x = “100”; String result = “Unplug your phone!”; String output = getMethodOutputWithInput(“main”, x);

boolean passed = output.contains(result);

passed = getResults(

result, output, “Result for battery = “ + x, passed);

assertTrue(passed);

}

@Test public void test03() {

String x = “45”; String result = “Plug in your phone!”; String output = getMethodOutputWithInput(“main”, x);

boolean passed = output.contains(result);

passed = getResults(

result, output, “Result for battery = “ + x, passed);

assertTrue(passed);

}

}

2.4.2. Dangling Else Statements

Sometimes with nested ifs we find a dangling else that could potentially belong to either if statement. The rule is that the else clause will always be a part of the closest unmatched if statement in the same block of code, regardless of indentation.

// Nested if with dangling else
if (boolean expression)
   if (boolean expression)
      Do statement;
   else  // belongs to closest if
      Do other statement;

coding exercise Coding Exercise

Try the following code with a dangling else. Notice that the indentation does not matter to the compiler (but you should make it your habit to use good indentation just as a best practice). How could you get the else to belong to the first if statement?

You can use curly braces ({}) to enclose a nested if and have the else clause belong to the the top level if clause like below:

// Nested if with dangling else
if (boolean expression)
{
   if (boolean expression)
      Do this statement;
}
else  // belongs to first if
  Do that statement;

In fact many experienced Java programmers always use curly braces, even when they are not technically required to avoid this kind of confusion.

2.4.3. groupwork Coding Challenge : Adventure

Adventure map

One of the first games coded for early computers in the 1970s was called Colossal Cave Adventure. It was a text-based interactive fiction game where you had to make your way through an elaborate cave. The program only understood one word or phrase commands like north, south, enter, take, etc. You can try playing Adventure recreated online following some of the commands in this walkthrough. Part of the challenge is finding the commands that the code will understand.

In a game like Adventure, else if statements can be used to respond to commands from the user like n, s, e, w. Try the program below (or in an interactive input IDE like JuiceMind or replit). This current adventure game asks the user whether they want to move n, s, e, or w, but right now only the north direction is coded. It leads to a new method called forest().

In the main method, add in else if statements to go in the directions of “s” for south, “e” for east, “w” for west, and an else statement that says “You can’t go in that direction”. Be creative and come up with different locations in each direction. Have each direction call a static method that you will write. The forest() and sea() methods are shown as examples for two of the diretions. You will need to change the input below the code to s or e or w and then run to test these branches. How many test-cases are needed to test all branches of your code? You can also connect locations to one another by calling their methods. If you have time, you can expand this game further with more nested if/else statements and come up with a different adventure location.

This is a text adventure game that lets the user move in 4 different directions. Right now, it only lets the user move north. Add in else if statements to go in the directions of “s” for south, “e” for east, “w” for west, and an else statement that says “You can’t go in that direction”. Be creative and come up with different locations in static methods below main for each direction. There are 5 TODO steps below.

2.4.4. Summary

  • (AP 2.4.A.1) Nested if statements consist of if, if-else, or if-else-if statements within if, if-else, or if-else-if statements.

  • (AP 2.4.A.2) The Boolean expression of the inner nested if statement is evaluated only if the Boolean expression of the outer if statement evaluates to true.

  • (AP 2.4.A.3) A multi-way selection (if-else-if) is used when there are a series of expressions with different segments of code for each condition. Multi-way selection is performed such that no more than one segment of code is executed based on the first expression that evaluates to true. If no expression evaluates to true and there is a trailing else statement, then the body of the else is executed.

// 3 way choice with else if
if (boolean expression)
{
   statement1;
}
else if (boolean expression)
{
   statement2;
}
else
{
    statement3;
}

2.4.5. AP Practice

You have attempted of activities on this page