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
1
Answer:
12345678910...............
Similar questions