我在某处的互联网上看到了这段代码。我想知道它do
是干什么用的。
public class LoopControl {
public static void main(String[] args) {
int count = 0;
do {
if (count % 2 == 0) {
for (int j = 0; j < count; j++) {
System.out.print(j+1);
if (j < count-1) {
System.out.print(", ");
}
}
System.out.println();
}
count++;
}
while (count <= 5);
}
}
我的意思是什么do
意思?它的作用是什么?任何其他信息也会很有用。