Computer Science, asked by somiddhyabanerjee, 5 months ago

Please give the Output :-

int i ;
for (i= 5; i >=1; i--)
{
if (i% 2== 1)
continue;
System.out.print ( i+ " ");
}​

Answers

Answered by ayushmanjena2004
0

The output will be :

4 2

Thank you

Similar questions