Pyramid Sequence
4
4 3
4 3 2
4 3 2 1
class Pyramid3
{
public static void main(String args[])
{
int i,j;
for(i=4;i>=1;i--)
{
for(j=4;j>=i;j--)
System.out.print(" "+j);
System.out.print("\n");
}
}
}
/********* OUTPUT ********
4
4 3
4 3 2
4 3 2 1 */
Subscribe to:
Post Comments (Atom)
This is not a pyramid, u made a triangle of *
please give the code of
3
36
365
3652
please
3
36
365
3652