Computer Science, asked by niladribanerjee2004, 9 months ago

nested loop 2,4 6,8 10 12 in bluej in java.. please help its urgent.

Answers

Answered by balanandan7
1

Answer:

for(int i=2;i<=12;i=i+2)

Explanation:

as Starting from 2...

the loop changes the control automatically to 4 as 2+2 is 4...

this continues al long as the condition becomes false...

Similar questions