int i, j;
for(i=0;i<4;i++)
{
for(j=i;j>=0;j--)
System. out. print(j);
System. out. println();
}
Answers
Answered by
3
Answer:
0
1 0
2 1 0
3 2 1 0
This is the output of the code fragment given above.
Similar questions