Posted by : Unknown Thursday 11 June 2015

class pyramidNumber
{
public static void main(String args[])
{
for(int i=0;i<5;i++)
{
for(int j=5;j>i;j--)
{
System.out.print(j);
}
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 -