package ch05;
public class WhileTest1 {
public static void main(String[] args) throws InterruptedException {
int num =1;
while (num <100) {
System.out.println("현재 값 : " +num);
num++;
Thread.sleep(200); //1000이 1초 1초다음에 수행을 하여라
}
}
}
'Java > chapter1' 카테고리의 다른 글
ch05 BreakTest1 (0) | 2021.08.20 |
---|---|
ch05 ContinueTest (0) | 2021.08.20 |
ch05 ForMainTest2 (0) | 2021.08.20 |
ch05 ForMainTest (0) | 2021.08.20 |
ch04 IfMainTest2 (0) | 2021.08.20 |