1. While

2. While 표현식

// While문
while(조건식) { 
// 조건식이 true일 경우 실행, false일 경우 종료
	반복 실행할 문장;
}

3. While break vs continue

4. While문의 위험성