Vaibhav Class

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

class Pattern

{
public static void main(String args[])
{
int a = 1;
for(int i = 5; i>=1; i--)
{
for(int j = 1; j<=i; j++)
{
System.out.print(a+"\t");
a++;
}
System.out.println();
}
}
}

You might also like