날아라쩡글이의 블로그입니다.
while문 본문
728x90
반응형
반복문 1번
while 반복문
while 반복문은 특정 조건식이 true가 나오는 동안 계속 반복이 된다.
while의 기본 구조
while(조건식){해당 조건식이 참일때 실행할 코드}
//
//
//
public class Ex02While {
public static void main(String[]args) {
//조건식에서 사용할 변수
int number = 1;
while(number<=3) {//number의 3보다 작거나 같을때까지 참
System.out.println("number의 현재값:"+number);
System.out.println("number는 3보다 작거나 같습니다. ");
System.out.println("--------------------------\n");
number++;//행동을 하고 +1씩 증가
}
}
}
반응형
'java (학원 전) story' 카테고리의 다른 글
중첩 for문 (0) | 2021.08.05 |
---|---|
for반복문 (0) | 2021.08.05 |
검증 (0) | 2021.08.05 |
중첩 if문 (0) | 2021.08.05 |
if -else if (0) | 2021.08.04 |
Comments