java基础[04]

2021-06-04 12:02

阅读:632

标签:ati   str   public   元素   numbers   rgs   number   循环   python   

增强for循环

public class ForDemo{
	public static void main(String[] args){
		int[] numbers = {10,20,30,40,50};
		//遍历数组元素
		for(int x:numbers){
		System.out.println(x);
		
		}
	}

}

输出得到

10

20

30

40

50

等价于python的:for i in numbers

java基础[04]

标签:ati   str   public   元素   numbers   rgs   number   循环   python   

原文地址:https://www.cnblogs.com/face-every/p/14656271.html


评论


亲,登录后才可以留言!