class JMM118
{
public static void main (
String[] args)
{
int i = 0, j = 9;
while (i++ <= j--)
{
i++; //i=5, j=4
if (j < 5)
break;
}
System.out.print(i + "," + j);
}
}
I think the Answer for this Flow is 8,5. But in
http://www.danchisholm.net/july21/mybook/chapter8/exam1ans.html They have given the Answer as 9,4.
Can anybody please Verify me...
Thanks in Advance
Deepak