add: for statement loop exercises
This commit is contained in:
33
13-loops/02-break/main.go
Normal file
33
13-loops/02-break/main.go
Normal file
@ -0,0 +1,33 @@
|
||||
// For more tutorials: https://blog.learngoprogramming.com
|
||||
//
|
||||
// Copyright © 2018 Inanc Gumus
|
||||
// Learn Go Programming Course
|
||||
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
||||
//
|
||||
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
)
|
||||
|
||||
func main() {
|
||||
var (
|
||||
sum int
|
||||
i = 1
|
||||
)
|
||||
|
||||
for {
|
||||
if i > 5 {
|
||||
break
|
||||
}
|
||||
|
||||
sum += i
|
||||
|
||||
fmt.Println(i, "-->", sum)
|
||||
|
||||
i++
|
||||
}
|
||||
|
||||
fmt.Println(sum)
|
||||
}
|
Reference in New Issue
Block a user