Go if 条件判断,switch 语句

 

demo.go(if 条件判断):

package main

import "fmt"

func main() {

	var score int = 500

	// if条件判断
	if score<450 {
		fmt.Println("哈哈")
	} else if score<550 {
		fmt.Printf("你好")
	} else {
		fmt.Printf("你好2")
	}

}

demo.go(switch语句):

package main

import "fmt"

func main() {

	var score int = 85

	// switch语句
	switch score / 10 {
	case 10:
		fmt.Println("优秀") // go语言中不需要添加 break
	case 9:
		fmt.Println("优秀")
	case 8:
		fmt.Println("良好")
	case 7:
		fmt.Println("中等")
	case 6:
		fmt.Println("及格")
	default:
		fmt.Println("不及格")
	}

	// switch 第二种方式(执行速度没有上面方式快)
	switch {
	case score >= 90:
		fmt.Println("优秀")
	case score >= 80:
		fmt.Println("良好")
	case score >= 70:
		fmt.Println("中等")
	case score >= 60:
		fmt.Println("及格")
	default:
		fmt.Println("不及格")
	}


	switch score / 10 {
	case 10, 9, 8, 7, 6:   // 可以将多种情况放到一个case中
		fmt.Println("及格")
	default:
		fmt.Println("不及格")
	}

	// fallthrough表示进入下一个case继续执行
	switch score / 10 {
	case 10:
		fallthrough
	case 9:
		fallthrough
	case 8:
		fallthrough
	case 7:
		fallthrough
	case 6:
		fmt.Println("及格")
	default:
		fmt.Println("不及格")
	}

}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值