Let’s continue discussing conditionals.
Last time we introduced simple conditional expressions and statements, and blocks. This lesson continues on those topics, introducing a few new wrinkles. We’ll show how you can combine conditional expressions and statements, and discuss how blocks introduce scope to our variables. So let’s get started!
Previously we discussed how you can use conditional operators (<
, >
, <=
, >=
, ==
, and !=
) to create conditional expressions.
For example, to test whether the value stored in the variable speed
is less than 70, we’d use the conditional expression speed < 70
.
Conditional expressions evaluate to boolean
values:
So… great! But what if we want to determine if speed is both less than 80 and greater than 70? Here’s how we would do this:
The example above introduces some new syntax, so let’s look at it carefully.
The example above introduces compound conditional expressions.
They are created from combining multiple individual conditional expressions using two new operators: and (&&
) and or (||
).
Both and (&&
) and or (||
) combine two conditional expressions, one on either side of the operator:
&&
) evaluates to true if both the conditional expression on the right and the left are true
.||
) evaluates to true if either the conditional expression on the right or the left is true
.Let’s look at how they work by example:
By combining simple conditional expressions using &&
and ||
, we can express arbitrary decision-making logic.
For example, if we want to determine if the value of a variable was both greater than 10, less than or equal to 20, and not equal to both 14 and 15:
We’re typically going to keep our compound conditional expressions as simple as possible. But when evaluating a compound conditional expression, Java follows a few rules:
Some of this may seem complicated or confusing! But don’t worry—99% of the conditional expressions you’ll find in real programs are extremely simple. If you find yourself writing something fairly complex in this course, please ask for help. There may be a simpler way!
So we can combine multiple conditional expressions together using &&
and ||
to create more complex decision-making logic.
We can also create compound conditional statements to put our conditional expressions to use.
Here’s an example.
Let’s go through it slowly and carefully.
Our code is starting to look more complicated.
But if you break it down line by line, it’s still just made up of the same simple building blocks.
Here’s how Java evaluates an if
statement:
if
branch where the conditional expressions evaluates to true
, it enters that branch and executes itelse
statement (just else
, not if else
), it always enters that blockConsider a double
value magical if it is strictly between 0 and 1.
Given two double
values first
and second
, write a snippet of code (not a method) to test
whether first
and second
are both magical numbers.
If they are, the program shall joyously exclaim (print) "True!" revealing their magical
nature.
Otherwise, it will print “False” encouraging you to seek the arcane secrets elsewhere.
Note that both first
and second
are already declared and initialized for you, and you
should not modify their values.
Previously we introduced the idea of a block of code. We needed blocks so that we could set off the code that should or should not be executed by a conditional statement. And we’ll be using them again later—both to indicate what part of a program should be repeated, and when we start to create reusable pieces of logic called functions.
But there is another important aspect of blocks that we need to discuss. Let’s introduce it using an example:
Try to run the code above. What happens? An error occurs! Why? Because variables are not available outside of the block in which they were declared!
The part of a program in which a variable is available is known as its scope. For the variables that we’ve been using so far, their scope is limited to the block in which they were declared. Note that they can be accessed in blocks declared inside their block, just not outside of their block. That’s hard to explain in words. So let’s talk it through.
Computer programs can also make more complex decisions based on multiple pieces of data.
To illustrate this, let's complete the short snippet of code below. You should assume that three variables are
already declared and have their values set: x
and y
, both int
values, and print
, a boolean. You do not
need to declare or modify their values.
You should write a snippet of code containing a conditional expression to accomplish the following goal. If the
value of x
is strictly greater than y
, you should print "Larger". Otherwise you should print "Smaller".
However, if print
is set to false you should not print anything, regardless of the values of x
and y
.
In the United States, you are legally an adult once you turn 18 years old.
Given an already-declared int
variable named age
containing a person's age, print "Adult" if they are legally an
adult and "Not Adult" if they are not.
However, if an already-declared boolean
variable whisper
is true
, then don't print anything at all.
Need more practice? Head over to the practice page.