当前位置:首页 > IT技术 > 编程语言 > 正文

go语言if条件语句
2022-02-14 10:52:06

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)
}

  

本文摘自 :https://www.cnblogs.com/

开通会员,享受整站包年服务立即开通 >