Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJan Oberreiter
78,020 PointsGo - Loops Challenge
I don't know what I am doing wrong here:
when I check it, it tells me: get 3, 6, 9, ... want 6, 9, 12 ... could someone please help me with a hint ... I've been trying and trying ... doesn't work ... thank you ... Jan.
package loops
import "fmt"
func CountByThrees(start int, end int) {
for i := 3; i <= 9; i += 3 {
fmt.Println(i)
}
}
1 Answer
Jan Oberreiter
78,020 PointsI finally figured it out ... for i := start; i <= end; i += 3 ... not for i := 1; i <= 9; i += 3 ...