Golang program to demonstrate the switch case with optional statement and expression

Here, we are going to demonstrate the switch case with optional statement and expression in Golang (Go Language)?
Submitted by Nidhi, on February 20, 2021 [Last updated : March 02, 2023]

Switch case with optional statement and expression in Golang

Problem Solution:

In this program, we will demonstrate switch case, here we will use optional statement and expression for case selection.

Program/Source Code:

The source code to demonstrate the switch case with an optional statement and expression is given below. The given program is compiled and executed successfully.

Golang code to demonstrate the example of switch case with optional statement and expression

// Golang program to demonstrate the switch case 
// with optional statement and expression.

package main
import "fmt"

func main() {
     switch month:=3; month{ 
       case 1: 
            fmt.Println("JAN") 
       case 2: 
            fmt.Println("FEB") 
       case 3: 
            fmt.Println("MAR") 
       case 4: 
            fmt.Println("APR") 
       case 5: 
            fmt.Println("MAY") 
       case 6: 
            fmt.Println("JUN") 
       case 7: 
            fmt.Println("JUL")
       case 8: 
            fmt.Println("AUG") 
       case 9: 
            fmt.Println("SEP") 
       case 10: 
            fmt.Println("OCT")
       case 11: 
            fmt.Println("NOV") 
       case 12: 
            fmt.Println("DEC") 
       default:  
            fmt.Println("Invalid Month") 
   }  
}

Output:

MAR

Explanation:

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmt package that includes the files of package fmt then we can use a function related to the fmt package.

In the main() function, we demonstrated the use of the switch case.

switch month:=3; month{ 
}

In the above code, month:=3; is an optional statement, here we assigned the value 3 to the month variable, and here variable month is used as an expression for the switch case to select the correct case and execute the body of the correct case.

Golang Switch Statement Programs »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.