我正在尝试编写一个对升空进行倒计时的程序,但使用的是 while 循环,而不是 for 循环。
到目前为止,我所做的只是创建了一个无限循环,尽管我使用的基本原理与 for 循环代码相同。
import acm.program.*;
public class CountDownWhile extends ConsoleProgram {
public void run() {
int t = START;
while (t >= 0); {
println(t);
t = t--;
}
println("Liftoff!");
}
private static final int START = 10;
}