Give output in tabular form
int i;
for( i=5 ; i>=1 ;i--)
{
if(i%2 ==1)
continue;
System.out.print( i+ "");
Answers
Answered by
0
4 2
is the output of the program
Answered by
0
Answer:
431 is the tabular output
Similar questions