Posted by : Unknown Thursday 11 June 2015


class IncreasePyramid
{ 
public static void main(String args[])  
{ 
for (int i = 0; i <= 5; i++)
{
for (int j = 0; j < i; j++)
{
for (int k = 0; k <= j; k++)
{
System.out.print("*");
}
System.out.println();
}
}
}
}
 

Output: 


Leave a Reply

Subscribe to Posts | Subscribe to Comments

Welcome to My Blog

Translate

Popular Post

Total Pageviews

Blog Archive

- Copyright © Learning Java Program - Powered by Blogger -