void printCount() { for (int value = 0; value <= 20; value++) { /* the 'o' specifier will print the octal integer */ System.out.printf("%o%n", value); } }