반복문 주어진 조건이 만족할 때까지 수행문을 반복적으로 수행 while, do-while, for문이 존재 1. while문 조건식이 참인 동안 수행문을 반복해서 수행 while(조건식) { 수행문1; ... } 수행문2; .... public class WhileExample { public static void main(String[] args) { int num = 1; int sum = 0; while( num