Computer Science, asked by sujalnaryang7, 7 months ago


wap to print the following pattern​

Attachments:

Answers

Answered by anindyaadhikari13
55

Here is your answer.

<hr/>

class x

{

static void main()

{

for(int i=1;i<=3;i++)

{

for(int j=i;j>=1;j--)

System.out.print(j+ " ");

System.out.println();

}

}

&lt;hr/&gt;

Similar questions