Table upto 20

 package nestedFor;




public class table

{

    public static void main()

    {

        int i;int j;

for(i=1;i<=20;i++)

{

for(j=1;j<=10;j++)

{

   

    System.out.print((j*i)+"   ");

}

System.out.println();

}

}

}

Comments

Popular posts from this blog

ARRAY C

PATTERN 5 C++

Pattern 10 c