摘要: package main import ( "fmt" "math" ) //求小球的体积 //如果半径是负数,返回pannic //处理pannic,温和的返回结果 func GetToyBallvolume(redius float64)float64 { if redius<0 { //redius 为负数,直接返回恐慌 ... 阅读全文
posted @ 2019-07-29 17:32 pad+ 阅读(152) 评论(0) 推荐(0) 编辑