Java for loop display pattern 3

Question

We would like to use for loop the show the following pattern.

1 
1 2 
1 2 3 
1 2 3 4 
1 2 3 4 5 
1 2 3 4 5 6 
public class Main {
  public static void main(String[] args) {
    //your code
  }
}




public class Main {
  public static void main(String[] args) {
    for (int i = 1; i <= 6; i++) {
      for (int j = 1; j <= i; j++) {
        System.out.printf("%-2d", j);
      }
      System.out.println();
    }
  }
}



PreviousNext

Related