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 trialCody Williams
404 PointsWhat am I doing wrong?
How is this code not correct?
// Enter your code below
let firstValue: Int = 2
let secondValue: Int = 6
let product: Int = firstValue * secondValue
let output: String = "The product of \(firstValue) and \(secondValue) is \(product)"
2 Answers
KRIS NIKOLAISEN
54,971 PointsCheck the output string. You have used and
where you should have times
.
kjvswift93
13,515 PointsEverything is correct with the exception of the value of your output string. It should read "The product of 2 times 6 is 12", however, your answer has it read "The product of 2 and 6 is 12". Also just so type inference is grasped as a fundamental concept in swift, your answer doesn't have to include the declaration of the type within each of your constants.
let firstValue = 2
let secondValue = 6
let product = firstValue * secondValue
let output = "The product of \(firstValue) times \(secondValue) is \(product)"