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 code it in the order of the directions and include detailed information and steps to how to solve this. If you can also keep it kind of simple if possible and keep the same idea of how I'm formating my code ( like using arrays and random etc.). I'm trying not to make the code too long and complicated since I'm still learning java. I asked before and it was perfect. But it didn't have the sum of each row and that is very important to include.  What I have thus far: import java.util.Random; import java.util.Arrays;   public class Project8 {   static int[][]ary;       public static void main(String[] args) {   ary = new int[10][10]; Random rnd = new Random();   for(int row = 0; row < 10; row++)   { for(int col = 0; col < 10; col++)   {    ary[row][col] = rnd.nextInt(101); } }   maxNumber(); sumrow();   }     public static void maxNumber() { int max = ary[0][0]; for(int row=0;row<10;row++) { for (int col=0;col<10;col++) { if (max < ary[row][col]) {   max=ary[row][col];     } } }   System.out.println("Largest array is " + max);   }     public static void sumrow() {    int[] sum = new int[10];  for(int row = 0; row < 10; row++)   { for(int col = 0; col < 10; col++) { sum[row] += ary(row); } } System.out.println("The sum of rows :"); System.out.println(Arrays.toString(sum));     public static int Mymethod(int row, int col); { int Sum = 0; for(int col = 0; col <10;c++) { Sum = ary[row][col]; }  return Sum; } } }

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
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 code it in the order of the directions and include detailed information and steps to how to solve this. If you can also keep it kind of simple if possible and keep the same idea of how I'm formating my code ( like using arrays and random etc.). I'm trying not to make the code too long and complicated since I'm still learning java.

I asked before and it was perfect. But it didn't have the sum of each row and that is very important to include. 

What I have thus far:

import java.util.Random;
import java.util.Arrays;
 
public class Project8
{
 
static int[][]ary;
 
 
 
public static void main(String[] args)
{
 
ary = new int[10][10];
Random rnd = new Random();
 
for(int row = 0; row < 10; row++)  
{
for(int col = 0; col < 10; col++)  
{
   ary[row][col] = rnd.nextInt(101);
}
}
 
maxNumber();
sumrow();
 
}
 
 
public static void maxNumber()
{
int max = ary[0][0];
for(int row=0;row<10;row++)
{
for (int col=0;col<10;col++)
{
if (max < ary[row][col])
{
  max=ary[row][col];
 
 
}
}
}
 
System.out.println("Largest array is " + max);
 
}
 
 
public static void sumrow()
{
 
 int[] sum = new int[10];
 for(int row = 0; row < 10; row++)  
{
for(int col = 0; col < 10; col++)
{
sum[row] += ary(row);
}
}
System.out.println("The sum of rows :");
System.out.println(Arrays.toString(sum));
 
 
public static int Mymethod(int row, int col);
{
int Sum = 0;
for(int col = 0; col <10;c++)
{
Sum = ary[row][col];
}
 return Sum;
}
}
}
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
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education