循环语句
包括:while、do…while、for
for(数据类型 x:遍历对象){ } (此语法格式称为foreach语句,用于遍历数组)
int arr[] = { 7, 10, 1 };// 一维数组 System.out.println("一维数组的元素为:"); for (int x : arr) { //foreach语句 System.out.print(x + "\t"); }
public class LeapYear { public static void main(String[] args) { String arr[] = { "牡丹", "月季", "玫瑰" };// 一维数组 System.out.println("“玫瑰”之前的元素为:"); for (String x : arr) { // foreach语句 if (x.equals("玫瑰")) break; System.out.print(x + "\t"); } } }
// break No1终止双层循环。 int arr[][] = { { 11, 12, 13 }, { 21, 22, 23 }, { 31, 32, 33 } }; No1: for (int vector[] : arr) { for (int x : vector) { if (x > 20) {// 大于20,终止循环 break No1; } System.out.print(x + " "); } }