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 trial

iOS Functions in Swift Functions in Swift Recap: Functions

functions in swift 3

Challenge Task 3 of 3

Sweet, we have a function! In this task, all you have to do is call the function and pass in a value of 24.0 degrees. Assign the result of the function to a constant named fahrenheitTemp.

Important: In each task of this code challenge, the code you write should be added to the code from the previous task.

functions.swift

func temperatureInFahrenheit ( temperature: Double) -> Double{

let fahrenheitTemp = (temperature * 9)/ 5 + 32

return fahrenheitTemp) }

let fahrenheitTemp = temperatureInFahrenheit(temperature: 24.0) im lost please help

functions.swift
func temperatureInFahrenheit ( temperature: Double) -> Double{ 
let fahrenheitTemp = (temperature * 9)/ 5 + 32
return fahrenheitTemp) }
let fahrenheitTemp  = temperatureInFahrenheit(temperature: 24.0)

1 Answer

robertrinca
PLUS
robertrinca
Courses Plus Student 11,316 Points

It doesn't seem to like the spacing you have in the function:

let fahrenheitTemp = (temperature * 9)/ 5 + 32

should be

let fahrenheitTemp = (temperature * 9) / 5 + 32 

althought

let fahrenheitTemp = (temperature * 9)/5 + 32

will pass (taking the space out between the / and the 5.

The other issue is an extraneous ) in the return statement, should just be:

return fahrenheitTemp }

I think properly spaced and lined, it should look like this:

func temperatureInFahrenheit(temperature: Double) -> Double {
  let fahrenheitTemp = (temperature * 9) / 5 + 32
  return fahrenheitTemp
}

let fahrenheitTemp = temperatureInFahrenheit(temperature: 24.0)

thank you so much