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

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

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