2022.10.06
for문
for(초기식; 조건식; 증감식) 수행문; for(초기식; 조건식; 증감식) { 수행문1; 수행문2; ... 수행문n; }
for문 중첩
for(초기식1; 조건식1; 증감식1) { for(초기식2; 조건식2; 증감식2) { 수행문; } }
while문
while(조건식) { 수행문; }
do ~ while문