Help!

What are the values of i and n after this loop executes?

int n = 0;
int i = 10;
while (i > 5)
{
n += 4;
i -= 2;
}


cout after the loop to check the values.
Topic archived. No new replies allowed.