📅  最后修改于: 2022-03-11 14:52:18.391000             🧑  作者: Mango
int count = 1;while (count < 11) { System.out.println("The count is " + count); count++; // remember, this increases the value of count by 1}