我想解決這個如何編寫一個函數,該函數使用函數f和浮點數x並使用Swift將f應用到x k次?
Write a function applyKTimes(f:(Float -> Float),x:Float,k:Int) -> Float
that takes a function f and a float x and applies f to x k times
例如函數f是
func square (number:Float) -> Float
{
return number * number
}
是有使用夫特短溶液?
這並不編譯。你需要一個':'和一個'else'子句。 –
Xcode錯誤'預期':'之後'? ......'三元表達式' – Carpsen90
是的,對不起。我打得太早,我沒寫完。我糾正了這個問題,並用展開的版本完成了答案。告訴我是否仍然有問題:我沒有這裏的Swift編譯器,所以我會深思熟慮。 –