摘要: //Go Exercise: Loops and Functions //1.Newton's method package main import ( "fmt" "math") //普通求解10次返回近似值func Sqrt(x float64) float64 { z := x / 2.0 f 阅读全文
posted @ 2022-07-19 10:14 小草原 阅读(35) 评论(0) 推荐(0) 编辑