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


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;="">

{

for(int col = 0; col < 10;="">

{

   ary[row][col] = rnd.nextInt(101);

}

}


maxNumber();

sumrow();


}



public static void maxNumber()

{

int max = ary[0][0];

for(int row=0;row<>

{

for (int col=0;col<>

{

if (max <>

{

  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;="">

{

for(int col = 0; col < 10;="">

{

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

{

Sum = ary[row][col];

}

 return Sum;

}

}

}

Jun 05, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here