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 trialwalter fernandez
4,992 PointsUsing these values, we want to compute the product and print out the product in a formatted string. Step 1: Declare a c
I do not who to do this. Can someone help me please?
// Enter your code below
let firstValue = 2
let secondValue = 1
let product = 2
let finalOutput = 2 * 1
4 Answers
Jeff McDivitt
23,970 PointsYou have declaring the variables correct. For the next part it is asking you to multiply the firstValue * SecondValue. You then need to use string interpolation for the third part
let firstValue = 1
let secondValue = 2
let product = firstValue * secondValue
let output = "The product of \(firstValue) times \(secondValue) is \(product)
walter fernandez
4,992 Pointsand what about quotation mark at the end of the last string.
Jeff McDivitt
23,970 PointsThe question asks you to name it output and what about the quotation marks? They are needed when using string interpolation
walter fernandez
4,992 Pointsthank you. It help me a lot.
walter fernandez
4,992 Pointswalter fernandez
4,992 Pointsbut if it is a interpolation why do not i put finalOutput or something like that?