package mainimport "fmt"func main() { j := 0 for j < 30{ j++ if j == 25{ continue } if j == 28{ break } fmt.Println("hello,",j) }}