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 trial

iOS Swift 2.0 Collections and Control Flow Control Flow With Loops Working with Loops

Hi 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

while.swift
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
Alexander Smith
10,476 Points

Dont 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

Hi 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
Alexander Smith
10,476 Points

It 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

Thanks anyway. There may be some glitch.

Alexander Smith
Alexander Smith
10,476 Points

well thats aggravating. I guess refresh it or something. It definitely should b working. good luck