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 trialZachary Kinnear
Courses Plus Student 2,269 PointsHi does anyone know what is wrong with this code. Thanks
Hi my code isn't working does anyone know what has happened. Thanks. /Users/Zak/Desktop/Screen Shot 2016-06-22 at 5.36.29 PM.png
let numbers = [2,8,1,16,4,3,9]
var sum = 0
var counter = 0
// Enter your code below
while counter < numbers.count {counter++}
while counter < numbers.count {
print([counter])
counter++
}
while counter < numbers.count {
sum += numbers[counter]
counter++
}
1 Answer
Alexander Smith
10,476 PointsDont worry its a lot simpler. Should look like this
let numbers = [2,8,1,16,4,3,9]
var sum = 0
var counter = 0
// Enter your code below
while counter < numbers.count {
sum = sum + numbers[counter]
counter++
}
any questions on how it works just ask
Zachary Kinnear
Courses Plus Student 2,269 PointsZachary Kinnear
Courses Plus Student 2,269 PointsHi thank you so much for your help but it still doesn't work. /Users/Zak/Desktop/Screen Shot 2016-06-22 at 5.58.20 PM.png Thanks anyway
Alexander Smith
10,476 PointsAlexander Smith
10,476 PointsIt should.Looking at your answer agian you actually did it in a way that should work as well you jsut have to many while loops. If you enter only your last while loop it will work too. Just tried it myself
Zachary Kinnear
Courses Plus Student 2,269 PointsZachary Kinnear
Courses Plus Student 2,269 PointsThanks anyway. There may be some glitch.
Alexander Smith
10,476 PointsAlexander Smith
10,476 Pointswell thats aggravating. I guess refresh it or something. It definitely should b working. good luck