Notice
Recent Posts
Recent Comments
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Archives
Today
Total
관리 메뉴

충분히 쌓여가는

향상된 for 문 본문

Java/JAVA1

향상된 for 문

빌드이너프 2023. 5. 18. 16:00
for (타입 변수명 : 배열 또는 컬렉션) {
	// 반복할 문장
}

 

public class practice {
    public static void main(String[] args) {
        int[] arr = {10, 20, 30, 40, 50};

        for (int i=0; i < arr.length; i++) {
            System.out.println(arr[i]);
        }
    }
}

10
20
30
40
50

 

 

public class practice {
    public static void main(String[] args) {
        int[] arr = {10, 20, 30, 40, 50};

        for(int tmp : arr) {
            System.out.println(tmp);
        }
    }
}

10
20
30
40
50

'Java > JAVA1' 카테고리의 다른 글

do - while 문  (0) 2023.05.18
while 문  (0) 2023.05.18
별찍기  (0) 2023.05.18
중첩 for 문  (0) 2023.05.18
for 문  (0) 2023.05.18