标签: 十二
thumbnail

【Java系列教程十二】while循环

while循环 循环语句允许重复执行一个或一组语句。 只要给定条件为true,while循环语句就会重复执行目标语句。 例子: int x = 3; while(x > 0) { System.o……