package ch05;
public class DoWhileTest1 {
public static void main(String[] args) {
int input = 10;
int sum = 0;
final int LIMIT = 10;
do {
System.out.println("현재 값 : " + input);
input = input - 1;
//input--;
}while(input != LIMIT);
//do는 무조건 실행하고난뒤에 while문을 실행하고난뒤 조건에 충족하면
//다시 do로 가고 조건에 충족하지못하면 while값으로
//if문과 다르게 반복적으로 사용가능 Ex)학점
}//main
}
'Java > chapter1' 카테고리의 다른 글
ch05 WhileTest2 (0) | 2021.08.20 |
---|---|
ch05 WhileMainTest (0) | 2021.08.20 |
ch05 BreakTest1 (0) | 2021.08.20 |
ch05 ContinueTest (0) | 2021.08.20 |
ch05 WhileTest1 (0) | 2021.08.20 |