美文网首页
4的索引位置是:" + index

4的索引位置是:" + index

作者: 哈迪斯Java | 来源:发表于2023-07-19 18:49 被阅读0次

    import java.util.Arrays; //导入java.util.Arrays类

    public class Example { // 创建类
    public static void main(String[] args) { // 主方法
    int ia[] = new int[] { 1, 8, 9, 4, 5 }; // 定义int型数组ia
    Arrays.sort(ia); // 将数组进行排序
    int index = Arrays.binarySearch(ia, 4); // 查找数组ia中元素4的索引位置
    System.out.println("4的索引位置是:" + index); // 将索引输出
    }
    }
    2小时java学习, 今天最后一段要学习的内容是

    相关文章

      网友评论

          本文标题:4的索引位置是:" + index

          本文链接:https://www.haomeiwen.com/subject/xgphddtx.html