首页 > 代码库 > A Tour of Go Exercise: Loops and Functions
A Tour of Go Exercise: Loops and Functions
As a simple way to play with functions and loops, implement the square root function using Newton‘s method.
In this case, Newton‘s method is to approximate Sqrt(x)
by picking a starting point z and then repeating:
To begin with, just repeat that calculation 10 times and see how close you get to the answer for various values (1, 2, 3, ...).
Next, change the loop condition to stop once the value has stopped changing (or only changes by a very small delta). See if that‘s more or fewer iterations. How close are you to the math.Sqrt?
Hint: to declare and initialize a floating point value, give it floating point syntax or use a conversion:
z := float64(1)z := 1.0
package main import ( "fmt")func Sqrt(x float64) float64{ var z float64 = 1 for i := 0; i < 10; i++ { z = z - (z*z - x) / (2 * z) } return z}func main() { fmt.Println(Sqrt(2))}
A Tour of Go Exercise: Loops and Functions
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。