Computer Science, asked by alfiafareed8125, 7 months ago

Find the output
for ( int j=1; j<=5; j+=2)
{
for (int k= 1;k<=j; k++)
System.out.print(k);
System.out.println();
}​

Answers

Answered by ijaz85423
3

Answer:

this does not have an output

Similar questions