Output:
Click Here For Java Online Compiler
Solution:
*** Star Pattern 5 *** ****** ***** **** *** ** *
Click Here For Java Online Compiler
Solution:
/** * * @author Alee Ahmed Kolachi */ class StarPattern5 { public static void main(String args[]) { int rows = 6; System.out.println("*** Star Pattern 5 ***" + "\n"); for (int i = rows; i >= 1; i--) { for (int j = rows; j > i; j--) { System.out.print(" "); } for (int k = 1; k <= i; k++) { System.out.print("*"); } System.out.println(""); } } }
comment 0 comments:
more_vertsentiment_satisfied Emoticon