int ctr=0; for (int i=1;i<5;i++) for (int j=1;j<=5;j+=2) ++ctr; System.out.println(ctr);
Answers
Answered by
9
Value of ctr is 4..
Hope it helps
Answered by
3
Answer:
The value of ctr = 15
Output : 15
Similar questions