package main import "fmt" func main() { //if語句 //num := 11 //if num % 2 == 0 { // fmt.Println("偶數(shù)") //}else{ // fmt.Println("奇數(shù)") //} score := 55 if score >= 90 { fmt.Println("優(yōu)") } else if score >= 80 { fmt.Println("良") } else if score >= 60 { fmt.Println("一般") } else { fmt.Println("不及格") } // if statement; condition 海象運算符 if num := 11; num%2 == 0 { fmt.Println("偶數(shù)") } else { fmt.Println(num) } //fmt.Println(num) }
本文摘自 :https://www.cnblogs.com/