Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Level 5. lesson 5 is bugging,

i have gotten the correct value but cant proceed.


i am working with printf
by

4 Answers

iamabhishek
Can you please share the code that you are trying to submit.
ochuko
it has been resolved, how do i solve section 6 1st question with the for loop
ochuko
package main
import "fmt"

func takeABreak() {
fmt.Println("Yeah! It's my break time.")
}
func main() {
for i:=12%4; i<=12; i+=4 {
if (i == 0) {
takeABreak()
}
if (i == 4) {
takeABreak()
}
if (i == 8) {
takeABreak()
}
}
}
ochuko
how do i solve it?

Login / Signup to Answer the Question.