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 FizzBuzz

FizzBuzz Challenge

Why is the below not a valid response?

Steven Deutsch
Steven Deutsch
21,046 Points

Hey William Ho,

You haven't posted any code for us to help you!

Sorry yes i thought it would copy in.

func fizzBuzz(n: Int) -> String { // Enter your code between the two comment markers

if n % 6 == 0 && n % 5 == 0 {return"FizzBuzz"}
if n % 6 == 0  {return"Fizz"}
if n % 5 == 0 {return"Buzz"}

// End code return "(n)" }

Thank you!!

2 Answers

Steven Deutsch
Steven Deutsch
21,046 Points

Hey William Ho,

First, the assignment asks you to check if a number is divisible by 3 and 5, then print "FizzBuzz" if it is true. You are checking if the input number is divisible by 6 and 5. The same is for returning "Fizz", you need to be checking if the input is divisible by 3. Second, I would recommend that you use else if to chain your if statements together.

Let me know if this helps

Thank you yes that fixed it!!!