KotlinCS 124 LogoJava

Compound Conditionals

var speed = 65
if (speed <= 65) {
println("Wow. A law-abiding driver!")
} else if (65 < speed && speed < 75) {
println("You're speeding, but probably won't get a ticket")
} else if (75 <= speed && speed < 85) {
println("Get ready for a ticket...")
} else {
println("You may be walking home!")
}

Welcome back to CS 124!

Next we’ll 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!

Compound Conditional Expressions
Compound Conditional Expressions

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:

var speed = 65
var safeDriver = speed < 70
println(safeDriver)

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:

var speed = 65
var riskyDriver = speed < 80 && speed > 70
println(riskyDriver)

The example above introduces some new syntax, so let’s look at it carefully.

var speed = 65
var riskyDriver = speed < 80 && speed < 70
println(riskyDriver)

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:

Let’s look at how they work by example:

println(true && true)
println(true && false)
println(false && true)
println(false && false)

Evaluating Compound Conditional Expressions
Evaluating Compound Conditional Expressions

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:

var value = 18
var goodValue = value > 10 && value <= 20 && value != 14 && value != 15
println(goodValue)

We’re typically going to keep our compound conditional expressions as simple as possible. But when evaluating a compound conditional expression, Kotlin follows a few rules:

var firstHomework = 10
var secondHomework = 2
var thirdHomework = 10

(The full set of rules is here. But we’ll always use paratheses to group things to avoid confusion!)

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!

Compound Conditional Statements
Compound Conditional Statements

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.

var example = 1028
if (example > 1024) {
println("Big value!")
} else {
println("Small value")
}

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 Kotlin evaluates an if statement:

Blocks and Variable Scope
Blocks and Variable Scope

Last time 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:

var outside = 10
if (outside > 8) {
println(outside)
var inside = true
println(inside)
}
println(inside)

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.

var outside = 10
if (outside > 8) {
println(outside)
var inside = true
println(inside)
}
println(inside)

More Practice

Need more practice? Head over to the practice page.