Computer Science, asked by prajjvalh8674, 1 year ago

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 Anonymous
9

Value of ctr is 4..

Hope it helps

Answered by samanwitapaul07
3

Answer:

The value of ctr = 15

Output : 15

Similar questions