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