📜  java while 循环 - Java 代码示例

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

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