We would like to use for loop the show the following pattern.
1 2 3 4 5 6 1 2 3 4 5 1 2 3 4 1 2 3 1 2 1
public class Main { public static void main(String[] args) { //your code here } }
public class Main { public static void main(String[] args) { for (int i = 6; i >= 1; i--) { for (int j = 1; j <= i; j++) { System.out.printf("%-2d", j); } System.out.println(); } } }