modify the dir

This commit is contained in:
astaxie
2014-12-14 23:18:20 +08:00
parent e528a9b3a3
commit 62bf78a342
205 changed files with 16 additions and 32 deletions

11
zh/src/1.2/sqrt.go Normal file
View File

@@ -0,0 +1,11 @@
// 章节 1.2
// $GOPATH/src/mymath/sqrt.go
package mymath
func Sqrt(x float64) float64 {
z := 0.0
for i := 0; i < 1000; i++ {
z -= (z*z - x) / (2 * x)
}
return z
}