Computer Science, asked by praneethvadupu2009, 2 months ago

Write a program in Java to display the following pattern:
1
2 1
3 2 1
4 3 2 1
5 4 3 2 1
pls ans fast​

Answers

Answered by Anonymous
2

Answer :-

Public Class partten

{

Public static void main (string args[ ])

Scanner in = new scanner (System. in);

{

int I,J;

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

{

for (J = 0; J<=i;j++)

System.out.print(chr (J) );

System. out. println ( );

}

}

Similar questions