椿雪

go语言if条件语句
package main

import "fmt"

func main() {
	//if语句
	//num := 11
	//if num % 2 == 0 {
	//	fmt.Println("偶数")
	//}else{
	//	fmt.Println("奇数")
	//}

	score := 55
	if score >= 90 {
		fmt.Println("优")
	} 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("偶数")
	} else {
		fmt.Println(num)
	}
	//fmt.Println(num)
}

  

posted on 2022-02-14 09:33  椿雪  阅读(33)  评论(0编辑  收藏  举报