“ir” Código de respuesta

ir

func sqrt(x float64) string {
	if x < 0 {
		return sqrt(-x) + "i"
	}
	return fmt.Sprint(math.Sqrt(x))
}

func main() {
	fmt.Println(sqrt(2), sqrt(-4))
}
DevLorenzo

Ve si más

if num < 0 {
        fmt.Println(num, "is negative")
    } else if num < 10 {
        fmt.Println(num, "has 1 digit")
    } else {
        fmt.Println(num, "has multiple digits")
    }
}
Wide-eyed Fox

Golang si más

package main

import "fmt"

func main() {
	name := "Manager"
	if name == "Manager" {
		fmt.Println("This is the Manager")
	} else {
		fmt.Println("This is not the manager")
	}
}
Mid Tier

Declaraciones en IF en Golang

if _, err := doThing(); err != nil {
  fmt.Println("Uh oh")
}
Harendra

Respuestas similares a “ir”

Preguntas similares a “ir”

Más respuestas relacionadas con “ir” en Go

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código