class forloop {
public static void main(String args[]) {
for (int row = 0; row < 3; row++){
for (int col = 0; col < 5; col++)
System.out.println("(" + row + ", " + col + ")");
if ((row == 1) && (col == 3)) // row가 1이고 col이 3이면 반복문을 빠져나갑니다.
break;
}
System.out.println("Done.");
}
}
/*
public class forloop {
public static void main(String args[]) {
int arr[] = { 10, 20, 30, 40, 50 };
for (int num : arr) { // 배열의 항목을 순서대로 출력합니다.
System.out.println(num);
}
System.out.println("Done.");
}
}
*/
/*public class forloop {
public static void main(String args[]) {
}
}
*/
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
col cannot be resolved to a variable
at forloop.main(forloop.java:6)
위에서 col 여기서 에러났다네요??
자바 수업 중에 질문드려요. ^^