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

java,数组,一位数组

时间:2016-02-27 15:11:55      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:

public class shuzu2 {

    public static void main(String[] args) {
        //创建一维数组,求数组中最大数
        int[] a={6,4,5,3,9,8,7};
        System.out.println("输出数组:");
        for(int i=0;i<a.length;i++)
        {
            System.out.println(""+a[i]);
        }
        int max=a[0];
        for(int j=0;j<a.length-1;j++)
        {
            if(max<a[j+1])
            {
                max=a[j+1];
                
                
            }
        }
        System.out.println("最大数max="+max);
        
    }

}

技术分享

java,数组,一位数组

标签:

原文地址:http://www.cnblogs.com/jiang2538406936/p/5222849.html

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