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 trialKunal Jarodia
402 PointsI am still stuck on the answer to this.
How do I write the answer to this?
I understand the method which would be writing "(firstValue)" "(secondValue)" "(product)" however I am having trouble on how i need to put that across on output
// Enter your code below
let firstValue = 19
let secondValue = 26
let product = firstValue * secondValue
let output = the "(firstValue)" times "(secondValue)" Is "(product)"
1 Answer
Michael Afanasiev
Courses Plus Student 15,596 PointsHi Kunal,
You are very close, remember that strings are written between ' or ", I suggest you review the 2nd video in this section about string interpolations. :)
Your code should have been like this:
let firstValue = 19
let secondValue = 26
let product = firstValue * secondValue
let output = "The product of \(firstValue) times \(secondValue) is \(product)"
Kunal Jarodia
402 PointsKunal Jarodia
402 PointsHello Michael,
Thank you very much for you assistance! That makes so much more sense then what I had in mind!
Thank you again! :)