码迷,mamicode.com
首页 > 其他好文 > 详细

A Tour of Go Exercise: Loops and Functions

时间:2014-10-27 00:18:38      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   sp   

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:

bubuko.com,布布扣

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

标签:style   blog   http   color   io   os   ar   for   sp   

原文地址:http://www.cnblogs.com/ghgyj/p/4053052.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!