Computer Science, asked by Anonymous, 5 months ago

How many times is the println statement executed?

for(int i=1;i<2;i++) {
for(int j=0;j<5;j++) {
System.out.println(j + " ");
}
}

Answers

Answered by madhavichowdhary005
0

Answer:

5 times

hope it's helpful

Similar questions