foreach语句for(元素类型 循环变量名称:用于从中检索元素的数组)
public class sentence { public static void main(String[] args) { int[] arr={1,2,3,4,5}; for(int element:arr) System.out.println(element); } }
posted on 2022-04-12 20:02 王陈锋 阅读(16) 评论(0) 编辑 收藏 举报