식과 연산자

조건문

반복문

for문

while문

do-while문

int i = 0;
do {
System.out.println(i);
i++;
} while (i < 10)