package main
import "fmt"
func main() {
if 7%2 == 0 {
fmt.Println("7 is even")
} else {
fmt.Println("7 is odd")
}
// You can have an `if` statement without an else.
if 8%4 == 0 {
fmt.Println("8 is divisible by 4")
}
if num := 9; num < 0 {
fmt.Println(num, "is negative")
} else if num < 10 {
fmt.Println(num, "has 1 digit")
} else {
fmt.Println(num, "has multiple digits")
}
}
가장 기본적인 코드다.
8-12 코드는 짝수와 홀수를 구분하는 일을 한다. 만약(if) 7을 2로 나눈 나머지가 0이면 "7 is even" 그렇지 않으면(else) "7 is odd"를 출력한다.
15-17 코드는 8이 4의 배수인지를 검사한다. 4로 나눈 나머지가 0이면 "8 is divisible by 4"를 출력한다.
19-25 코드를 보면 if와 else if를 여러 번 사용하고 있다. num의 값 9가 0보다 작은 경우와 10보다 작은 경우 그렇지 않은 경우를 분기하고 있다.
다음 예제 Switch
예제로 살펴보는 Go : If/Else
Recent Posts
Archive Posts
Tags