# Go Koşul Durumları
Go koşul durumları (if else) dersini işliyoruz.
a := 25
b := 50
if b > a {
fmt.Println("b büyüktür a dan")
}sayi := 3
if sayi % 2 == 0{
fmt.Println(sayi , "çift sayıdır")
} else{
fmt.Println(sayi , "tek sayıdır")
}sayi := 3
if sayi % 2 == 0{
fmt.Println(sayi , "çift sayıdır")
}
else{
fmt.Println(sayi , "tek sayıdır")
}1. İç İçe If Else Kullanımı
Last updated