JSRUN
使用此草稿 删除草稿
while 循环在执行前判断执行条件:
while (!isDone()) { doSomething(); }
do-while 循环在执行后判断执行条件:
do { printLine(); } while (!atEndOfPage());