Computer Science, asked by sivaanijanaswamy, 11 months ago

pattern in java
1
21
321
4321
54321

Answers

Answered by adarshmb9611
0

Explanation:

lhs side 12345 RHS from the 12345 RHS and Other Side all lost signs 1

Answered by trishit80
1

Answer:

class pattern

{

void main()

{

int i,j;

for(i=1;i<=5;i++)

{

for(j=i;j<=1;j--)

{

System.out.print(j);

}

System.out.println();

}

}

}

Similar questions