码迷,mamicode.com
首页 > 其他好文 > 详细

golang 条件语句和循环语句

时间:2017-02-05 11:38:12      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:golang 条件语句与循环

golang的条件语句:

package main
import (
    "fmt"
)

func main(){
    age := 18
    
    // if else if else 语句
    if age == 18 {
        fmt.Println("your age is 18")
    }else if age > 18{
        fmt.Println("your age is bigger than 18") 
    }else {
        fmt.Println("your age is smaller than 18")
    }

    //swith 语句 匹配一个就退出
    switch age {
    case 16:
        fmt.Println(your age is 16)
    case 18:
        fmt.Println(your age is 18)      
    default:
        fmt.Println(your age is not 16 or 18)    
    }
    //switch语句另一种写法
    switch {
    case age < 18:
        fmt.Println(your age is smaller than 18)
    case age > 18:
        fmt.Println(your age is bigger than 18)      
    default:
        fmt.Println(your age is not 16 or 18)    
    }    
    // for 循环
    for i :=0;i <10;i++{
        fmt.Println(i)
    }
    // for 循环另一种写法
    i := 0
    for ; i<10;i++{
        fmt.Println(i)
    }
    //for 循环另一种写法
    i := 0
    for i < 10{
        fmt.Println(i)
        i++
    }
    // for 死循环
    for {
        fmt.Println("1")
    }
}


本文出自 “欺壹世De博客” 博客,请务必保留此出处http://qiyishi.blog.51cto.com/5731577/1894900

golang 条件语句和循环语句

标签:golang 条件语句与循环

原文地址:http://qiyishi.blog.51cto.com/5731577/1894900

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!