Problem 1 Add the following code that creates and initializes a 20 array al Then, call the method print to print the contents of the array. Understand how we can traverse a 2D array using loops and indexes where the 1" index is visualized as a row of a table and the second index as a column of a table. Understand the passing of 2D arrays as arguments to methods. package lab18; public class Lab18 { static void print( int[][) a1) { System.out.print ln(); for ( int i =0; i < a1.length; ++i) { for ( int j =0; j < a1[i]. length; ++j) 3 4 7 8 10 11 System.out.print( al[i][j] + " "); System.out.println(); } 12 13 14 public static void main(String[] args) { int [) [] a1 = { 15 16 E 17 {1, 2, 3, 4}, {5, 6, 7, 8}, {9, 10, 11, 12} }; 18 19 20 21 22 23 print( al ); 24 25 26 } 27 Output - lab18 (run) 8 run: 1 2 3 4 5 6 7 8 9 10 11 12 BUILD SUCCESSFUL (total time: 0 seconds) Problem 2 Overload method print with the following signature: static void print( String[][] al) The code inside print should be identical with the previous method print. String [) ) a2 - { {"john", "pau", "james" }, {"mary", "laura", "margaret"} };

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter12: Points, Classes, Virtual Functions And Abstract Classes
Section: Chapter Questions
Problem 29SA
icon
Related questions
Question

Java Netbeans

Problem 1
Add the following code that creates and initializes a 20 array al Then, call the method print to
print the contents of the array. Understand how we can traverse a 20 array using loops and indexes
where the 1* index is visualized as a row of a table and the second index as a column of a table.
Understand the passing of 2D arrays as arguments to methods.
1
package lab18;
public class Lab18
{
static void print( int [] [] a1)
{
System.out.println();
for ( int i =0; i < a1. length; ++i)
{
for ( int j =0; j < a1[i]. length; ++j)
3
4
5
8
9
10
11
System.out.print( al[i][j] + " ");
12
System.out.println();
13
}
public static void main(String[] args)
{
int [] [] a1 = {
14
15
16 Q
17
{1, 2, 3, 4},
{5, 6, 7, 8},
{9, 10, 11, 12}
};
18
19
20
21
22
23
print( a1 );
24
25
26
}
27
Output - lab18 (run) *
run:
1 2 3 4
5 6 7 8
9 10 11 12
BUILD SUCCESSFUL (total time: 0 seconds)
Problem 2
Overload method print with the following signature:
static void print( String[] al)
The code inside print should be identical with the previous method print.
String [] (0 a2 = {
{"john", "paul", "james'" },
{"mary", "laura", "margaret"}
};
公会回
Transcribed Image Text:Problem 1 Add the following code that creates and initializes a 20 array al Then, call the method print to print the contents of the array. Understand how we can traverse a 20 array using loops and indexes where the 1* index is visualized as a row of a table and the second index as a column of a table. Understand the passing of 2D arrays as arguments to methods. 1 package lab18; public class Lab18 { static void print( int [] [] a1) { System.out.println(); for ( int i =0; i < a1. length; ++i) { for ( int j =0; j < a1[i]. length; ++j) 3 4 5 8 9 10 11 System.out.print( al[i][j] + " "); 12 System.out.println(); 13 } public static void main(String[] args) { int [] [] a1 = { 14 15 16 Q 17 {1, 2, 3, 4}, {5, 6, 7, 8}, {9, 10, 11, 12} }; 18 19 20 21 22 23 print( a1 ); 24 25 26 } 27 Output - lab18 (run) * run: 1 2 3 4 5 6 7 8 9 10 11 12 BUILD SUCCESSFUL (total time: 0 seconds) Problem 2 Overload method print with the following signature: static void print( String[] al) The code inside print should be identical with the previous method print. String [] (0 a2 = { {"john", "paul", "james'" }, {"mary", "laura", "margaret"} }; 公会回
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning