Monday 9 June 2014

Pattern 6

public class pattern6
 { public static void main(String[] args)
{
int i,j;
for(i=4; i>=1; i--)
{
System.out.print("\n");
for(j=4; j>=i; j--)
{
System.out.print(j);
}
}
}

}
output:

4
43
432
4321

No comments:

Post a Comment

SAY HELLO!!