series program

 1 2 3 4 5

1 2 3 4

1 2 3

1 2

1


class series

{

public static void main(String args[])

{

for(int r=5 ; r>=1 ; r--)

{

for (int c=1 ; c<=r ; c++)

{

System.out.print(c+ "  ");

}

System.out.println() // to come to next line

}

}

}


// common way

class series

{

public static void main(String args[])

{

int a=1, d=5;   //  a- means first value  d- means how many element in first line

for(int r=1;r<=4;r++)

{

  a=1;

for (int c=1 ; c<=d ; c++)

{

System.out.print(a+ "  ");

a++;

}

d++;

System.out.println() // to come to next line

}

}

}


Comments

Popular posts from this blog