📗 4주차에 배울 내용반복문 시작While문 1While문 2do-while문break, continuefor문 1for문 2중첩 반복문1. 반복문 시작while 문, do - while문, for문 이렇게 있다.while(조건식) {} // 조건이 true 일때까지 반복하고 false이면 반복문을 나온다do {}while(조건식) // 블럭안에 있는것을 한번 실행하고 조건식으로 들어감for ( int i=0; i2. while문 1public class While1_2 { public static void main(String[] args) { int count = 0; while (count 3. while문 2public class While2_3 { pub..