2022年3月19日

摘要: 1--Math类简单的东西 //一些常数 show(Math.PI); show(Math.E); //四舍五入 show(Math.round(3.4)); show(Math.round(3.6)); //向上取整 show(Math.ceil(3.1)); //向下取整 show(Math.f 阅读全文

posted @ 2022-03-19 14:06 罗芭Remoo 阅读(53) 评论(0) 推荐(0) 编辑

摘要: 在使用Arrays.binarySearch()的时候要注意先对数组进行排序。 Arrays.binarySearch()方法介绍: Searches the specified array of ints for the specified value using the binary searc 阅读全文

posted @ 2022-03-19 13:07 罗芭Remoo 阅读(49) 评论(0) 推荐(0) 编辑