if
とelse
の例を見ていきます。
package main
import (
"fmt"
)
func main() {
x := 42
if x == 40 {
fmt.Println("xは40です")
} else {
fmt.Println("xは40ではないです")
}
}
if
文の中ではelse if
を何回でも使うことができます。
package main
import (
"fmt"
)
func main() {
x := 42
if x == 40 {
fmt.Println("xは40です")
} else if x == 41 {
fmt.Println("xは41です")
} else if x == 42 {
fmt.Println("xは42です")
} else if x == 43 {
fmt.Println("xは43です")
} else {
fmt.Println("xは40ではないです")
}
}