"do-while" loop in Java

Forums:

int i = 7;
int f7 = 1;

do {
    f7 *= i;
    i--;
while (i > 1);
//f7 is 5040