func isFloatInt(floatValue float64) bool{ //What’s the implementation here?
}
测试用例: 输入:1.5输出:false; 输入:1输出:true; 输入:1.0输出:true;
我只是在操场上检查,这对于NaN也是正确的。
func isIntegral(val float64) bool { return val == float64(int(val)) }