Skip to content

Latest commit

 

History

History
50 lines (39 loc) · 763 Bytes

6.08.md

File metadata and controls

50 lines (39 loc) · 763 Bytes

セクション 6.8 条件 - if, else if, else

ifelseの例を見ていきます。

package main

import (
	"fmt"
)

func main() {
	x := 42

	if x == 40 {
		fmt.Println("xは40です")
	} else {
		fmt.Println("xは40ではないです")
	}
}

playground

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ではないです")
	}
}

playground