Signup/Sign In

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

how do i solve it?
2 years ago
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()
}
}
}
2 years ago
it has been resolved, how do i solve section 6 1st question with the for loop
2 years ago