1
0
mirror of https://github.com/MADTeacher/go_basics.git synced 2025-11-29 05:36:55 +02:00
Files
go_basics/part_1/1.11/4.go

15 lines
130 B
Go
Raw Normal View History

2025-03-25 21:11:56 +03:00
package main
import "fmt"
func main() {
i := 13
for i > 0 {
i--
if i%2 == 0 {
continue
}
fmt.Printf("%d ", i)
}
}