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 trialJohn Wetherbee
1,467 PointsI've reviewed the videos several times, & read up on the issue and can't solve this problem. I need your help please.
Your help is appreciated.
Thank you in advance!
John
// Enter your code below
// Enter your code below
func temperatureInFahrenheit(temperature: Double) -> Double {
let temperature = temperature * 9 / 5 + 32
return temperature
}
temperatureInFahrenheit(temperature: 24.0)
let fahrenheitTemp = temperature
2 Answers
Steve Hunter
57,712 PointsHi John,
You want to create a constant, as you have done, called fahrenheitTemp
. Into that, i.e. to the right of an equals sign, use the call to the func that you've also written.
So, you assign the returned double that comes back from temperatureInFahrenheit
into fahrenheitTemp
:
let fahrenheitTemp = temperatureInFahrenheit(temperature: 24.0)
I hope that makes sense.
Steve.
John Wetherbee
1,467 PointsThank you very much Steve! Problem solved with your help.
Have a great day!!
John
Steve Hunter
57,712 Points
Same to you!
Steve.