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

数组中如何按照表中显示

时间:2018-07-11 14:39:36      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:个数   else   void   需要   范围   text   创建   返回值   需求   

package wac.wev.LianXi;
/*

  • 需求1:需要定义遍历元素的功能,输出结果:[元素1, 元素2, 元素3, 元素4, 元素5...]
  • 2:单独调用
  • */
    public class Text {
    public static void main(String[] args){
    //创建一个数组
    int[] arr = {13,25,1,25,32,13,2,3,4,5,24,79};
    bianLi(arr);
    }
    //明确返回值:void
    //明确参数类型和参数个数:int[] arr
    public static void bianLi(int[] arr){
    //确定输出结构内容,首先输出"["
    System.out.print("[");
    //遍历数组的元素
    for(int x =0;x<arr.length;x++){
    if(x==arr.length-1){//限定X的范围
    System.out.print(arr[x]+"]");//如果符合要求输出的内容,和格式
    }else{
    System.out.print(arr[x]+", ");//如果不符合要求的内容和格式
    }
    }
    }
    }

数组中如何按照表中显示

标签:个数   else   void   需要   范围   text   创建   返回值   需求   

原文地址:http://blog.51cto.com/13852519/2140323

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