Print Pattern in Java:

public class PrintPattern {

 public static void main(String[] args) {

 int rows = 5;

 for (int i = 1; i <= rows; ++i) {

 for (int j = 1; j <= i; ++j) {

 System.out.print(“* “);

 }

 System.out.println();

 }

 }

}

Output:

* 

* * 

* * * 

* * * * 

* * * * *

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *