날아라쩡글이의 블로그입니다.
중첩 for문 본문
728x90
반응형
public class Ex07NestedFor {
public static void main(String[]args) {
//i의 현재값 :1일때 2일때..
//j의 현재값 :51,52,53,54 바깥쪽 println이 나옴 51,52,53,54 바깥쪽 println이 나옴..
for(int i = 1; i<=3; i++) {
System.out.println("-------------");
for(int j = 51; j<=54; j++) {
System.out.printf("i:[%d] j:[%d]\n",i , j);
}}
System.out.println();
}
}
반응형
'java (학원 전) story' 카테고리의 다른 글
시스템 개발이란 무엇인가?(2021-08-10) (0) | 2021.08.10 |
---|---|
switch 문 (0) | 2021.08.05 |
for반복문 (0) | 2021.08.05 |
while문 (0) | 2021.08.05 |
검증 (0) | 2021.08.05 |
Comments