Please give the Output :-
int i ;
for (i= 5; i >=1; i--)
{
if (i% 2== 1)
continue;
System.out.print ( i+ " ");
}
Answers
Answered by
0
The output will be :
4 2
Thank you
Similar questions