Question: What does the following program do? Explain line-by-line and then give the output. public class Program { public static void main( String args[] ) {

What does the following program do? Explain line-by-line and then give the output.

public class Program

{

public static void main( String args[] )

{

int Table [ ];

Table = new int[ 6 ];

for ( int i = 0; i < 6; i++ )

Table[ i ] = i * ( i + 1 );

for ( int i = 6; i > 0 ; i-- ) {

System.out.printf( "%d \t ", Table [6-i] );

if ( i%2 != 0 )

System.out.print( " " );

}

}

}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!