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 출력