Let's Learn Java Programming..... Through Lots of Coding Examples For Each Topic. Now Go For It ..!
How to Print this pattern * ** *** **** ***** class p1{ public static void main (String[] args) { for(int i = 1; i<=5 ; i++){ for(int j = 1; j<=i ; j++ ) { System.out.print("*"); } System.out.println(); } } }