WAP to display the following pattern ?
* * * * * * * * * *
* * * * * * * * *
* * * * * * * *
* * * * * * *
* * * * * *
* * * * *
* * * *
* * *
* *
*
* * * * * * * * * *
* * * * * * * * *
* * * * * * * *
* * * * * * *
* * * * * *
* * * * *
* * * *
* * *
* *
*
class PatternStar { public static void main(String args[]) { for(int i=1; i<=10; i++) { for(int j=10; j>=i; j--) { System.out.print("*"); } System.out.println(); } } }
No comments:
Post a Comment