// Math测试方法 public static void MathTestMethod(){ //向下取整 int param_1 = (int)Math.floor(3.14f); //3 //向上取整 int param_2 = (int)Math.ceil(3.14f); //4 //四舍 Read More
posted @ 2020-08-02 22:13 gygtech Views(155) Comments(0) Diggs(0) Edit