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 trialEric villalobos
938 Pointsthis is still not the correct code, after i am convinced it is correct it is not. i need the exact code
https://teamtreehouse.com/library/swift-3-basics/swift-types/recap-swift-types what is the exact code for this task? i am convinced my code is correct, and can not find the error in my code.
// Enter your code below
let firstValue: Int = 2001
let secondValue: Int = 2002
let product = "firstValue * secondValue"
let output = "The product of \(firstValue) times \(secondValue) = \(product)"
4 Answers
Aiden Mitchell
5,572 Pointslet product = "firstValue * secondValue" // This is a string!
// It needs to be...
let product = firstValue * secondValue
andren
28,558 PointsIn addition to the problem that aidenmitchell has pointed out you also have an issue in your last line of code with regard to the task instructions. Namely that your string does not match the structure of the example string the instructions provide to the letter.
The example string is "The product of 2 times 4 is 8" notice the use of "is" rather than an equal sign which is what you are using in your string.
The complete answer to this challenge looks like this:
// Task 1
let firstValue: Int = 2002
let secondValue: Int = 2003
// Task 2
let product = firstValue * secondValue
let output = "The product of \(firstValue) times \(secondValue) is \(product)"
Also please try to not create so many duplicate posts, especially without checking if the previous post has already been answered. This is in fact the second time I have posted this code for you, as I already left an answer on your previous post.
Jason Anders
Treehouse Moderator 145,860 PointsHi andren
I moved your response to the Answers (for up-voting). I also deleted the duplicate threads for this question, unfortunately, this also included the first response you provided. Apologies. :)
Thank you for all your participation in the Community.
~Jason
andren
28,558 PointsDon't worry about that, my first response was nothing ground breaking anyway .
I originally posted my response as a comment due to the fact that I was mostly just repeating the answer I already provided in the other thread, so it felt strange to leave it as an answer again. With that thread deleted it makes sense to have it as an answer.
And thank you for your active role in moderating this forum . I always appreciated the cleanup and assistance you provide.
Eric villalobos
938 Pointsmy apologies i was missing something on my end
Raymond Carter, Jr.
iOS Development Techdegree Student 488 PointsI'm having a problem with the code challenge. im putting in everything right but it won't take my code. help please!!
Jason Anders
Treehouse Moderator 145,860 PointsJason Anders
Treehouse Moderator 145,860 PointsHi Eric villalobos
I have deleted the previous, duplicate threads you posted with this question. Please refrain from multiple postings for the same question in the Community.
Thank you.
Jason ~Community Moderator