java007

제로·2022년 9월 4일
0

Java basic

목록 보기
7/45
post-custom-banner

반복문1

  1. for문 : 반복 횟수를 알고 있을 때, 주로 사용된다.
    1) 형식
    for(초기값설정;반복조건;증/감연산자){
    반복처리할 내용
    }
    2) 처리 순서
    초기값 -> 반복조건 -> 처리할 내용 -> 증/감연산자 -> ... -> 반복조건 -> 처리할 내용
for(int i=0;i<=20;i++) {
	System.out.print(i+",");
    }   // 0부터 20까지 숫자 출력
 
for(int i=3; i<=21; i+=3) {
	System.out.print("3의배수"+i+", ");
	}   // 3부터 21까지 3의 배수 출력

'
3) for문 밖 전역변수 활용
누적된 변수를 사용해야할 경우, 반복문 밖에 선언하여 처리한다.

int tot=0;
for(int i=1;i<=10;i++) {
	System.out.print(i);
	if(i!=10)System.out.print("+");
	tot+=i;
	}
	System.out.println("="+tot);  // 1+2+...+9+10=55 출력
profile
아자아자 화이팅
post-custom-banner

0개의 댓글