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 have: 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; } } }

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 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 have:

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
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,