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 trialwilliamho3
9,799 PointsFizzBuzz Challenge
Why is the below not a valid response?
williamho3
9,799 PointsSorry 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
21,046 PointsHey 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
williamho3
9,799 PointsThank you yes that fixed it!!!
Steven Deutsch
21,046 PointsSteven Deutsch
21,046 PointsHey William Ho,
You haven't posted any code for us to help you!