📜  java代码示例中如何使用do while循环

📅  最后修改于: 2022-03-11 14:52:22.938000             🧑  作者: Mango

代码示例5
int count = 1;while (count < 11) {    System.out.println("The count is " + count);    count++; // remember, this increases the value of count by 1}