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 (i82 != 0 ) System.out.print(" " );
Step by Step Solution
3.42 Rating (146 Votes )
There are 3 Steps involved in it
Heres a linebyline explanation of the program followed by its output Lines 12 public class Program Declares a public class named Program public static void mainString args The main methodwhere program ... View full answer
Get step-by-step solutions from verified subject matter experts
