study-games

A collection of static games for Computer Science education

This project is maintained by TheRenegadeCoder

Control Flow for 500

This statement is the only one that is unreachable in the following code snippet:

if (x > 10) {
  System.out.println("I'm here!");
} else if (x > 20) {
  System.out.println("It's me!");
} else {
  System.out.println("Here I am!");
}