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

第九课 go的循环语句

时间:2018-06-17 15:13:35      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:span   语句   printf   形式   print   IV   \n   color   for语句   

1 for语句的三种形式

/* for 循环 */
    for a := 0; a < 10; a++ {
        fmt.Printf("a 的值为: %d\n", a)
    }


var a, b int = 1, 5
for a < b {
a++
fmt.Printf("a 的值为: %d\n", a)
}
 

2  go支持GO语句

第九课 go的循环语句

标签:span   语句   printf   形式   print   IV   \n   color   for语句   

原文地址:https://www.cnblogs.com/liufei1983/p/9192749.html

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