码迷,mamicode.com
首页 > 编程语言 > 详细

一维数组遍历

时间:2020-04-12 18:47:41      阅读:88      评论:0      收藏:0      [点我收藏+]

标签: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<arr.length; 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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!