int x = 10; do { x--; } while (x < 10);
How many times the loop will be executed?
ten times
zero times
one to nine times
more than ten times