Q:

Golang program to use the expression in the case statement

belongs to collection: Golang Basic Programs

0

In this program, we will use the expression in the case statement and then execute the appropriate case based on the case of switch expression and print an appropriate message on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to use the expression in the case statement is given below. The given program is compiled and executed successfully.

// Golang program to use the expression in the case statement.

package main
import "fmt"

func main() {
    var val int=3
    
     switch val{ 
       case 4-1: 
            fmt.Println("INDIA") 
       case 4-2: 
            fmt.Println("USA") 
       case 4-3: 
            fmt.Println("UK") 
       case 4-4: 
            fmt.Println("CHINA")
       default:  
            fmt.Println("Invalid value") 
   }  
}

Output:

INDIA

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 created a variable val, which is initialized with 3.

Here, we case 4-1: will be executed because variable val is initialized with 3. That's why the message "INDIA" will be printed on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Golang Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
<< Golang program to demonstrate the fmt.Sscanf() fun...