"while" loop in Java

Forums:

int i = 5;
int f5 = 1;

while (i > 1) {
    f5 *= i;
    i--;
}
//f5 is 120