Question: int i = 1; while (i < 10) if ((i++) % 2 == 0) System.out.println(i); While comptuing in java, the result is 3 5 7
int i = 1; while (i < 10) if ((i++) % 2 == 0) System.out.println(i);
While comptuing in java, the result is 3 5 7 9. how come "1" is not included?? any help
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
