Question: Hello, I need help with my Java assignment. Thank you in advance. Instructions Today you are going to finish off a method described below. Your

Hello, I need help with my Java assignment. Thank you in advance.

Hello, I need help with my Java assignment. Thank you in advance.Instructions Today you are going to finish off a method described below.Your work isn't wasted... maybe you could make use of this onein your assignment? (It's STILL due this coming Sunday!) Details of increaseCellByOne

Instructions Today you are going to finish off a method described below. Your work isn't wasted... maybe you could make use of this one in your assignment? (It's STILL due this coming Sunday!) Details of increaseCellByOne () method * * * ====Method for you to complete==== * This method will receive a number from 0 to 99 along with an integer array. * The tens-digit of the number provided will represent the row, the ones-digit I will represent the column. The integer in the designated row/column will be increased by one. (e.g. if you receive the number 24, you will * increase the integer found in row 2, column 4 of the array by 1) * @param number Integer two digit number (first digit = row to add to; second digit = column to add to) * @param array Integer array to modify * @return void * */ Input: Parameters The method will take the following parameters: an integer (number): Two digit number (between 0 and 99) an integer array (array): A 10x10 array of integers, Processing Determine which ROW you are going to update. The row will be whatever is in the tens-digit of the integer variable number. Eg. If number equals 24, you would want to use row index 2. Determine which COLUMN you are going to update. The row will be whatever is in the ones-digit of the integer variable number. Eg. If the number equals 24, you would want to use column index 4. Increase the integer found in the ROW/COLUMN cell of the array (array) by 1. Sample method Input/output: increaseCellByOne() Input arguments table array before entering method table array after leaving method 24, table 0 1 2 3 4 5 6 7 8 9 1 2 4 ooooooooo 5 8 9 0 1 2 3 4 5 6 7 8 9 1 2 1 4 ooooooooo 5 8 9 39, table 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 6- import java.util.Scanner; 8- public class POD { 14 * 15 * * 17 * ====Method for you to complete==== This method will receive a number from 0 to 99 along with an integer array. * The tens-digit of the number provided will represent the row, the ones-digit will represent the column. The integer in the designated row/column will be increased by one. (e.g. if you receive the number 24, you will increase the integer found in row 2, column 4 of the array by 1) * @param number Integer two digit number (first digit = row to add to; second digit = column to add to) @param array Array to modify : @return void * * * * * static void increaseCellByOne(int number, //START WORK HERE int[][] array) { //END WORK HERE 31 - public static void main(String[] args) { 33 //INPUT Scanner in = new Scanner(System.in); int[][] table = new int[10][10]; int numberUpdates = in.nextInt(); 40 - 41 for (int i=0; i

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!