码迷,mamicode.com
首页 > 其他好文 > 详细

for语句增强

时间:2021-04-15 12:23:41      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:pre   定义   dom   public   str   个数   pac   main   pack   

package ShunXuDome;

public class forDOme05 {
public static void main(String[] args) {
int[]numbers={10,20,30,40,50};//定义了一个数组
for (int i = 0; i < 5; i++) {
System.out.println(numbers[i]);

}
//遍历组的元素
for(int x:numbers){
System.out.println(x);
}
}
}

for语句增强

标签:pre   定义   dom   public   str   个数   pac   main   pack   

原文地址:https://www.cnblogs.com/java5745/p/14659522.html

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