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 Conditional Statements Working with Logical Operators

Raymond Espinoza
Raymond Espinoza
1,989 Points

If statements

How do you write an if statement inside the loop to carry out the desired checks and if the number is indeed both an odd number and a multiple of 7, append the value to the results array provided ?

logicalOperators.swift
var results: [Int] = []

for n in 1...100 {
    // Enter your code below


    // End code 
}

2 Answers

Piotr Nejman
Piotr Nejman
3,374 Points

Number is odd when divided by 2 leaves some reminder - n % 2 != 0 Number is a multiple of 7 when divided by 7 leaves no reminder - n % 7 == 0 so the code will be:

var results: [Int] = []
for n in 1...100 {
    // Enter your code below
    if n % 2 != 0 && n % 7 == 0 {
        results.append(n)
    }
    // End code
}
Marc Schultz
Marc Schultz
23,356 Points
let isOdd = n % 2 != 0 // if the remainder of two is not zero then it is an odd number
let dividableBySeven = n % 7 == 0 // if the remainder of seven is equal to zero, then the number is dividable by seven
if isOdd && dividableBySeven {
    results.append(n)
}