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!
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
Lewis Mansbridge
1,119 PointsHi there, I'd like some help if its okay :) For and in loops and that stuff, just a quick question please :)
Is it bad I'v been taking this course but still don't know how to do some of the challenges they set?
Please help with this, also does anyone know a age / more videos i can watch to help me with the if statements and mainly the for in looping statements?
Thank you for your help!
var results: [Int] = []
for n in 1...100 {
// Enter your code below
// End code
}
1 Answer

jcorum
71,828 PointsLewis, you use the modulus (or remainder) operator to check if a number is evenly divisible by another number or not:
if n % 2 != 0 && n % 7 == 0 {
results.append(n)
}
If a number n is even (evenly divisible by 2) the n % 2 is 0. If it's odd then n % 2 is not 0.
Lewis Mansbridge
1,119 PointsLewis Mansbridge
1,119 PointsHi there, thanks for your reply, This has helped, but I'm still a little stuck, do you know any websites that can explain it ? Just this bit throws me abit, thank you!