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

数组的遍历

时间:2018-08-24 02:10:35      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:oid   test   out   rgs   print   star   tar   ++   ati   

package test01;

//数组的遍历
public class TestArray02 {
public static void main(String[] args) {
int[] a = { 1, 2, 3, 4, 5 };
for (int i = 0; i < a.length; i++) {
// 上面遍历下角标
// System.out.println(i);
// 下面遍历数组
System.out.println(a[i]);
}
}
}

数组的遍历

标签:oid   test   out   rgs   print   star   tar   ++   ati   

原文地址:https://www.cnblogs.com/Koma-vv/p/9527322.html

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