while / do…while / for——先认全貌,再逐个击破。
while (x < 20) { x++; }
do { x++; } while (x < 20);
for (int i = 0; i < 10; i++) { }
for (int n : numbers) { }