题解 | #游乐园门票#
游乐园门票
http://www.nowcoder.com/practice/c48714d088954151b0c69ff370e4aee5
package main //import "fmt"
/**
- 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
- @param hight double浮点型 身高
- @return bool布尔型 */ func ispay(hight float64) bool { // write code here if hight < 160 { return false } return true }

查看12道真题和解析