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
3
Answer:
this does not have an output
Similar questions