ava Program - Functions with 2D Arrays Write a function named displayElements that takes a two-dimensional array, the size of its rows and columns, then prints every element of a two-dimensional array. Separate every row by a new line and every column by a space.   In the main function, write a program that asks for integer input to be assigned on a 3 x 3 array and call the function displayElements to print the contents on the next line. Input 1. Multiple lines containing integer each line Output R1C1: 1 R1C2: 2 R1C3: 3 R2C1: 4 R2C2: 5 R2C3: 6 R3C1: 7 R3C2: 8 R3C3: 9 1 2 3 4 5 6 7 8 9

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 23PE
icon
Related questions
Question

Java Program - Functions with 2D Arrays

Write a function named displayElements that takes a two-dimensional array, the size of its rows and columns, then prints every element of a two-dimensional array. Separate every row by a new line and every column by a space.

 

In the main function, write a program that asks for integer input to be assigned on a 3 x 3 array and call the function displayElements to print the contents on the next line.

Input

1. Multiple lines containing integer each line

Output

R1C1: 1
R1C2: 2
R1C3: 3
R2C1: 4
R2C2: 5
R2C3: 6
R3C1: 7
R3C2: 8
R3C3: 9
1 2 3
4 5 6
7 8 9
Write a function named displayElements that takes a two-dimensional array, the size of its
rows and columns, then prints every element of a two-dimensional array. Separate every
row by a new line and every column by a space.
In the main function, write a program that asks for integer input to be assigned on a 3 x 3
array and call the function display Elements to print the contents on the next line.
Input
1. Multiple lines containing integer each line
Output
R1C1: 1
R1C2: 2
R1C3: 3
R2C1: 4
R2C2: 5
R2C3: 6
R3C1: 7
R3C2: 8
R3C3: 9
123
456
789
Score: 0/10
E
Main.java
1
Java
Test Cases
Constraints
O Constraint 1
This code must call the function inside the main
Test Cases
○ Test Case 1
Your Output
No Output
Expected Output
RICI: 0
R1C2: 2
R1C3: 4
R2C1: 6
R2C2: 8
R2C3: 1
R3C1: 3
R3C2: 5
R3C3: 7
024
681
357
Transcribed Image Text:Write a function named displayElements that takes a two-dimensional array, the size of its rows and columns, then prints every element of a two-dimensional array. Separate every row by a new line and every column by a space. In the main function, write a program that asks for integer input to be assigned on a 3 x 3 array and call the function display Elements to print the contents on the next line. Input 1. Multiple lines containing integer each line Output R1C1: 1 R1C2: 2 R1C3: 3 R2C1: 4 R2C2: 5 R2C3: 6 R3C1: 7 R3C2: 8 R3C3: 9 123 456 789 Score: 0/10 E Main.java 1 Java Test Cases Constraints O Constraint 1 This code must call the function inside the main Test Cases ○ Test Case 1 Your Output No Output Expected Output RICI: 0 R1C2: 2 R1C3: 4 R2C1: 6 R2C2: 8 R2C3: 1 R3C1: 3 R3C2: 5 R3C3: 7 024 681 357
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 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