Question: CSC 201 2D Arrays Lab 1) Write a class Lab10 that has the method add To10 (below) that accepts a 2 dimensional Computer Science array

CSC 201 2D Arrays Lab 1) Write a class "Lab10" that has the method "add To10" (below) that accepts a 2 dimensional Computer Science array of integers. Each row will have exactly one element with a value of 0. For each row, modify this element so that the sum of all numbers in the row is 10. No other elements should be modified. public static void addTo10 (int array)t //Your code here Write to class "Lab10", a method "setHints" (below) that accepts a 2 dimensional array of integers containing 1s and 0s and modifies it according to the following (minesweeper) criteria: to hint of its presence, for each mine (a value 1) increment by 1 the value of all its surrounding squares; if another mine exists in one of these squares, its value is left unchanged 2) public static void setHints (int[] array) f //Your code here The figure below illustrates the state of an array at the beginning of the method (left) and at the end of the method (right) after all the hint values have been added. 1 1 0 00 0 0 0 0 1 0 1
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
