这是取自这里:http : //tour.golang.org/#5
package main
import (
"fmt"
"math"
)
func main() {
fmt.Printf("Now you have %g problems.",
math.Nextafter(2, 3))
}
结果:
//Now you have 2.0000000000000004 problems.
//Program exited.
白板的微信
相关分类