Hi, I am programming in java. The instructions require: Create a new project and call it Project8. Create a dual array 10x10 and initialize it with random numbers, range 0 to 100. Example: int[][] ary = new int[10][10]; Create a method that finds the largest number in the array. Create a method that calculates the sum of a single row. Make the method flexible such that it can calculate the sum of any specified row. Display the sum of each row.  The code must be well structured, use method where possible.    Please include detailed information and steps to how to solve this. Thank you!   This is what I have thus far: //Brianna Fisher COMP 1000import java.util.Random;import java.util.Arrays; public class Project8{ static int ary;   public static void main(String[] args){ int[][] ary = new int[10][10];Random rnd = new Random (-1); for(int row = 0; row < 10; row++) {for(int col = 0; col < 10; col++) {ary[row][col] = rnd.nextInt(100);}} for(int row = 0; row < 10; row++)for(int col = 0; row <10; col++){System.out.println(Arrays.toString(ary[row])); }

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter10: Classes And Data Abstraction
Section: Chapter Questions
Problem 22PE
icon
Related questions
Question

Hi, I am programming in java. The instructions require:

Create a new project and call it Project8.

Create a dual array 10x10 and initialize it with random numbers, range 0 to 100.

Example: int[][] ary = new int[10][10];

Create a method that finds the largest number in the array.

Create a method that calculates the sum of a single row. Make the method flexible such that it can calculate the sum of any specified row.

Display the sum of each row. 

The code must be well structured, use method where possible. 

 

Please include detailed information and steps to how to solve this. Thank you!

 

This is what I have thus far:

//Brianna Fisher COMP 1000
import java.util.Random;
import java.util.Arrays;

public class Project8
{

static int ary;

 

public static void main(String[] args)
{

int[][] ary = new int[10][10];
Random rnd = new Random (-1);

for(int row = 0; row < 10; row++)
{
for(int col = 0; col < 10; col++)
{
ary[row][col] = rnd.nextInt(100);
}
}

for(int row = 0; row < 10; row++)
for(int col = 0; row <10; col++)
{
System.out.println(Arrays.toString(ary[row]));

}

Expert Solution
trending now

Trending now

This is a popular 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
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,