一维数组遍历

2021-02-19 00:21

阅读:454

标签:style   system   ati   参照物   遍历   color   red   一维数组   pac   

package ren.redface.demo;

public class ArrayDemo {
    
    public static void main(String[] args) {
        
        // 定义数组
        int[] arr = { 11, 22, 33, 44, 55 };
        
        System.out.println(arr);//打印数据地址
        System.out.println(1);//索引值为1的元素
        System.out.println("数组共有:"+arr.length+"个");
        
        //定义参照物
        int max = arr[0];
        
        //遍历数组,获取除了0以外的所有元素,进行比较
        for(int x=1; x) {
            if(arr[x] > max) {
                max = arr[x];
            }
        }
        System.out.println("数组中的最大值是:"+max);
    }
}

 

一维数组遍历

标签:style   system   ati   参照物   遍历   color   red   一维数组   pac   

原文地址:https://www.cnblogs.com/ooo888ooo/p/12686545.html


评论


亲,登录后才可以留言!