“Golang Switch” Kod odpowiedzi

Golang Switch

func main() {
	i := 2
    switch i {
    case 1:
        fmt.Println("one")
    case 2:
        fmt.Println("two")
    case 3:
        fmt.Println("three")
    }
}
Radu Cuziac

Golang Switch

	package main 
    
    my_number := 2
    fmt.Print("Write ", my_number, " as ")
    
    switch my_number {
      case 1:
          fmt.Println("one")
      case 2:
          fmt.Println("two")
      case 3:
          fmt.Println("three")
      default :
          // default case 
    }

Long Lemur

Odpowiedzi podobne do “Golang Switch”

Pytania podobne do “Golang Switch”

Więcej pokrewnych odpowiedzi na “Golang Switch” w Go

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu