Computer Science, asked by anuska55, 6 months ago

4.give output of the following snippet
int x,y;
for(x=1; x<=5; x++)
(
for(y=1; y<x; y++)
{
if(x = 4)
break;
System.out.print(y);
}
System.out.println();​

Answers

Answered by Anonymous
1

Answer:

12345678910...............

Similar questions