func isFloatInt(floatValue float64) bool{ //What's the implementation here? }
测试用例: 输入:1.5 输出:false; 输入:1 输出:真; 输入:1.0 输出:真;
go
go ×1