41
Exercise #2: What are the final values of
a
and
b
?
a = 1; b = 7; while (a < b) { a++; b--; }
a = 1; b = 5; while ((a += 2) < b) { b--; }