【Day 06】GO新手入门:for循环
GO新手入门:for循环
Github地址:https://github.com/zoulee24/GO_NoobNote
GO的for循环有着python和c++的特性
重要
变量自增(代码第13行)必须独立出来写,不能和其他语句写在一起
package _06
import "fmt"
func main() {
count := 0
//for循环格式1
for true {
if count > 10 {
break
}
//报错syntax error: unexpected ++, expecting comma or )
//fmt.Println(count++)
fmt.Println(count)
count++
}
fmt.Println("end1/n")
count = 0
//for循环格式2
for count
共有 0 条评论