Which of the following code snippets will print the numbers 1 through 10? Choose the correct answer:
A. int i = 0;
do {
System.out.println(i);
i++;
} until (i == 10);
B. int i = 1;
do {
System.out.println(i);
i++;
} until (i == 10);
C. int i = 0;
do {
System.out.println(i);
i++;
} while (i < 11);
D. int i = 1;
do {
System.out.println(i);
i++;
} while (i < 11);