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 trialJordan North
1,816 PointsNeed HELP!!
Im am really stuck here cant think of what to do.
var results: [Int] = []
for n in 1...100 {
// Enter your code below
if (n/2 % 0 ) && (n/7){
results.append(n)
}
// End code
}
1 Answer
Stone Preston
42,016 PointsYou have the right idea.
The syntax for using the mod operator looks something like this
number % divisor
We can compare the value of the remainder to some other value using comparison operators like != (not equal) or == (equal)
number % divisor != 0
number % divisor == 0
Combining these concepts we can test if its an odd number and a multiple of 7
If a number is odd, then dividing it by 2 should have a remainder that is not equal to 0. If its a multiple of 7, then dividing it by 7 should have a remainder of 0. You can use the modulo operator (%) to test this.
var results: [Int] = []
for n in 1...100 {
// Enter your code below
// Check if its odd AND if its a multiple of 7
if (n % 2 != 0 ) && (n % 7 == 0){
results.append(n)
}
// End code
}
For more information on the mod operator see the Swift documentation
Jordan North
1,816 PointsJordan North
1,816 Pointsthank you