How To Write Conditional Statements in Go

Written by Gopher Guides

Conditional statements are part of every programming language. With conditional statements, we can have code that sometimes runs and at other times does not run, depending on the conditions of the program at that time.

When we fully execute each statement of a program, we are not asking the program to evaluate specific conditions. By using conditional statements, programs can determine whether certain conditions are being met and then be told what to do next.

Let’s look at some examples where we would use conditional statements:

  • If the student receives over 65% on her test, report that her grade passes; if not, report that her grade fails.
  • If he has money in his account, calculate interest; if he doesn’t, charge a penalty fee.
  • If they buy 10 oranges or more, calculate a discount of 5%; if they buy fewer, then don’t.

Through evaluating conditions and assigning code to run based on whether or not those conditions are met, we are writing conditional code.

This tutorial will take you through writing conditional statements in the Go programming language.

If Statements

We will start with the if statement, which will evaluate whether a statement is true or false, and run code only in the case that the statement is true.

In a plain text editor, open a file and write the following code:

grade.go

  1. package main
  2. import "fmt"
  3. func main() {
  4. grade := 70
  5. if grade >= 65 {
  6. fmt.Println("Passing grade")
  7. }
  8. }

With this code, we have the variable grade and are giving it the integer value of 70. We are then using the if statement to evaluate whether or not the variable grade is greater than or equal ( >= ) to 65. If it does meet this condition, we are telling the program to print out the string Passing grade.

Save the program as grade.go and run it in a local programming environment from a terminal window with the command go run grade.go.

In this case, the grade of 70 does meet the condition of being greater than or equal to 65, so you will receive the following output once you run the program:

Output

  1. Passing grade

Let’s now change the result of this program by changing the value of the grade variable to 60:

grade.go

  1. package main
  2. import "fmt"
  3. func main() {
  4. grade := 60
  5. if grade >= 65 {
  6. fmt.Println("Passing grade")
  7. }
  8. }

When we save and run this code, we will receive no output because the condition was not met and we did not tell the program to execute another statement.

To give one more example, let us calculate whether a bank account balance is below 0. Let’s create a file called account.go and write the following program:

account.go

  1. package main
  2. import "fmt"
  3. func main() {
  4. balance := -5
  5. if balance < 0 {
  6. fmt.Println("Balance is below 0, add funds now or you will be charged a penalty.")
  7. }
  8. }

When we run the program with go run account.go, we’ll receive the following output:

Output

  1. Balance is below 0, add funds now or you will be charged a penalty.

In the program we initialized the variable balance with the value of -5, which is less than 0. Since the balance met the condition of the if statement (balance < 0), once we save and run the code, we will receive the string output. Again, if we change the balance to 0 or a positive number, we will receive no output.

Else Statements

It is likely that we will want the program to do something even when an if statement evaluates to false. In our grade example, we will want output whether the grade is passing or failing.

To do this, we will add an else statement to the grade condition above that is constructed like this:

grade.go

  1. package main
  2. import "fmt"
  3. func main() {
  4. grade := 60
  5. if grade >= 65 {
  6. fmt.Println("Passing grade")
  7. } else {
  8. fmt.Println("Failing grade")
  9. }
  10. }

Since the grade variable has the value of 60, the if statement evaluates as false, so the program will not print out Passing grade. The else statement that follows tells the program to do something anyway.

When we save and run the program, we’ll receive the following output:

Output

  1. Failing grade

If we then rewrite the program to give the grade a value of 65 or higher, we will instead receive the output Passing grade.

To add an else statement to the bank account example, we rewrite the code like this:

account.go

  1. package main
  2. import "fmt"
  3. func main() {
  4. balance := 522
  5. if balance < 0 {
  6. fmt.Println("Balance is below 0, add funds now or you will be charged a penalty.")
  7. } else {
  8. fmt.Println("Your balance is 0 or above.")
  9. }
  10. }

Output

  1. Your balance is 0 or above.

Here, we changed the balance variable value to a positive number so that the else statement will print. To get the first if statement to print, we can rewrite the value to a negative number.

By combining an if statement with an else statement, you are constructing a two-part conditional statement that will tell the computer to execute certain code whether or not the if condition is met.

Else if Statements

So far, we have presented a Boolean option for conditional statements, with each if statement evaluating to either true or false. In many cases, we will want a program that evaluates more than two possible outcomes. For this, we will use an else if statement, which is written in Go as else if. The else if or else if statement looks like the if statement and will evaluate another condition.

In the bank account program, we may want to have three discrete outputs for three different situations:

  • The balance is below 0
  • The balance is equal to 0
  • The balance is above 0

The else if statement will be placed between the if statement and the else statement as follows:

account.go

  1. package main
  2. import "fmt"
  3. func main() {
  4. balance := 522
  5. if balance < 0 {
  6. fmt.Println("Balance is below 0, add funds now or you will be charged a penalty.")
  7. } else if balance == 0 {
  8. fmt.Println("Balance is equal to 0, add funds soon.")
  9. } else {
  10. fmt.Println("Your balance is 0 or above.")
  11. }
  12. }

Now, there are three possible outputs that can occur once we run the program: - If the variable balance is equal to 0 we will receive the output from the else if statement (Balance is equal to 0, add funds soon.) - If the variable balance is set to a positive number, we will receive the output from the else statement (Your balance is 0 or above.). - If the variable balance is set to a negative number, the output will be the string from the if statement (Balance is below 0, add funds now or you will be charged a penalty).

What if we want to have more than three possibilities, though? We can do this by writing more than one else if statement into our code.

In the grade.go program, let’s rewrite the code so that there are a few letter grades corresponding to ranges of numerical grades:

  • 90 or above is equivalent to an A grade
  • 80-89 is equivalent to a B grade
  • 70-79 is equivalent to a C grade
  • 65-69 is equivalent to a D grade
  • 64 or below is equivalent to an F grade

To run this code, we will need one if statement, three else if statements, and an else statement that will handle all failing cases.

Let’s rewrite the code from the preceding example to have strings that print out each of the letter grades. We can keep our else statement the same.

grade.go

  1. package main
  2. import "fmt"
  3. func main() {
  4. grade := 60
  5. if grade >= 90 {
  6. fmt.Println("A grade")
  7. } else if grade >= 80 {
  8. fmt.Println("B grade")
  9. } else if grade >= 70 {
  10. fmt.Println("C grade")
  11. } else if grade >= 65 {
  12. fmt.Println("D grade")
  13. } else {
  14. fmt.Println("Failing grade")
  15. }
  16. }

Since else if statements will evaluate in order, we can keep our statements pretty basic. This program is completing the following steps:

  1. If the grade is greater than 90, the program will print A grade, if the grade is less than 90, the program will continue to the next statement…

  2. If the grade is greater than or equal to 80, the program will print B grade, if the grade is 79 or less, the program will continue to the next statement…

  3. If the grade is greater than or equal to 70, the program will print C grade, if the grade is 69 or less, the program will continue to the next statement…

  4. If the grade is greater than or equal to 65, the program will print D grade, if the grade is 64 or less, the program will continue to the next statement…

  5. The program will print Failing grade because all of the above conditions were not met.

Nested If Statements

Once you are feeling comfortable with the if, else if, and else statements, you can move on to nested conditional statements. We can use nested if statements for situations where we want to check for a secondary condition if the first condition executes as true. For this, we can have an if-else statement inside of another if-else statement. Let’s look at the syntax of a nested if statement:

  1. if statement1 { // outer if statement
  2. fmt.Println("true")
  3. if nested_statement { // nested if statement
  4. fmt.Println("yes")
  5. } else { // nested else statement
  6. fmt.Println("no")
  7. }
  8. } else { // outer else statement
  9. fmt.Println("false")
  10. }

A few possible outputs can result from this code:

  • If statement1 evaluates to true, the program will then evaluate whether the nested_statement also evaluates to true. If both cases are true, the output will be:
  1. [secondary_label Output]
  2. true
  3. yes
  • If, however, statement1 evaluates to true, but nested_statement evaluates to false, then the output will be:
  1. [secondary_label Output]
  2. true
  3. no
  • And if statement1 evaluates to false, the nested if-else statement will not run, so the else statement will run alone, and the output will be:
  1. [secondary_label Output]
  2. false

We can also have multiple if statements nested throughout our code:

  1. if statement1 { // outer if
  2. fmt.Println("hello world")
  3. if nested_statement1 { // first nested if
  4. fmt.Println("yes")
  5. } else if nested_statement2 { // first nested else if
  6. fmt.Println("maybe")
  7. } else { // first nested else
  8. fmt.Println("no")
  9. }
  10. } else if statement2 { // outer else if
  11. fmt.Println("hello galaxy")
  12. if nested_statement3 { // second nested if
  13. fmt.Println("yes")
  14. } else if nested_statement4 { // second nested else if
  15. fmt.Println("maybe")
  16. } else { // second nested else
  17. fmt.Println("no")
  18. }
  19. } else { // outer else
  20. statement("hello universe")
  21. }

In this code, there is a nested if statement inside each if statement in addition to the else if statement. This will allow for more options within each condition.

Let’s look at an example of nested if statements with our grade.go program. We can check for whether a grade is passing first (greater than or equal to 65%), then evaluate which letter grade the numerical grade should be equivalent to. If the grade is not passing, though, we do not need to run through the letter grades, and instead can have the program report that the grade is failing. Our modified code with the nested if statement will look like this:

grade.go

  1. package main
  2. import "fmt"
  3. func main() {
  4. grade := 92
  5. if grade >= 65 {
  6. fmt.Print("Passing grade of: ")
  7. if grade >= 90 {
  8. fmt.Println("A")
  9. } else if grade >= 80 {
  10. fmt.Println("B")
  11. } else if grade >= 70 {
  12. fmt.Println("C")
  13. } else if grade >= 65 {
  14. fmt.Println("D")
  15. }
  16. } else {
  17. fmt.Println("Failing grade")
  18. }
  19. }

If we run the code with the variable grade set to the integer value 92, the first condition is met, and the program will print out Passing grade of:. Next, it will check to see if the grade is greater than or equal to 90, and since this condition is also met, it will print out A.

If we run the code with the grade variable set to 60, then the first condition is not met, so the program will skip the nested if statements and move down to the else statement, with the program printing out Failing grade.

We can of course add even more options to this, and use a second layer of nested if statements. Perhaps we will want to evaluate for grades of A+, A and A- separately. We can do so by first checking if the grade is passing, then checking to see if the grade is 90 or above, then checking to see if the grade is over 96 for an A+:

grade.go

  1. ...
  2. if grade >= 65 {
  3. fmt.Print("Passing grade of: ")
  4. if grade >= 90 {
  5. if grade > 96 {
  6. fmt.Println("A+")
  7. } else if grade > 93 && grade <= 96 {
  8. fmt.Println("A")
  9. } else {
  10. fmt.Println("A-")
  11. }
  12. ...

In this code, for a grade variable set to 96, the program will run the following:

  1. Check if the grade is greater than or equal to 65 (true)
  2. Print out Passing grade of:
  3. Check if the grade is greater than or equal to 90 (true)
  4. Check if the grade is greater than 96 (false)
  5. Check if the grade is greater than 93 and also less than or equal to 96 (true)
  6. Print A
  7. Leave these nested conditional statements and continue with remaining code

The output of the program for a grade of 96 therefore looks like this:

Output

  1. Passing grade of: A

Nested if statements can provide the opportunity to add several specific levels of conditions to your code.

Conclusion

By using conditional statements like the if statement, you will have greater control over what your program executes. Conditional statements tell the program to evaluate whether a certain condition is being met. If the condition is met it will execute specific code, but if it is not met the program will continue to move down to other code.

To continue practicing conditional statements, try using different operators to gain more familiarity with conditional statements.