while 循环 int balance = 10; int goal = 20; while (balance < goal) { ... } do/while 循环 do { ... } while (balance < goal);