
how to print the following in java 654321 54321 4321 321 21 1

public class Pattern{
public static void main(String[]args)
{
int n=6;
for(int i=n;i>=1;i--)
{
for(int j = 0 ; j < 7-i ; j++){
System.out.print(" ");
}
for(int j=i;j>=1;j--)
{
System.out.print(j);
}
System.out.println();
}
}
}
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.