Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This is a java assignment. Thanks 1. POD: Age related 5 points possi Saved Details of increaseCellByOne () method * ====Method for you to complete====

This is a java assignment.

image text in transcribed

image text in transcribed

image text in transcribed

Thanks

1. POD: Age related 5 points possi Saved 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 * 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. E.g. 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. E.g. 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. Output: Return value The method does not return anything. (All program output, from the main method, is handled for you.) Output: Return value The method does not return anything. (All program output, from the main method, is handled for you.) 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 gooooooooo 0 1 2 3 4 5 6 7 8 9 1 2 1 4 ooooooooo 5 8 gooooooooo 1 1 1 1 1 1 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 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 import java.util.Scanner; - public class PoD { * ====Method for you to complete==== * This method will receive a number trom 0 to 99 along with an integer array. * The tens-digit or 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 Interes two dipil 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, int[] array) { //START WORK HERE //END WORK HERE public static void main(String[] args) { //INPUT Scanner in = new Scanner(System.in); int[][] table - new int[10][10]; int number Updates - in.nextInt(); for (int i-0; i

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Genetic Databases

Authors: Martin J. Bishop

1st Edition

0121016250, 978-0121016258

More Books

Students also viewed these Databases questions

Question

a neglect of quality in relationship to international competitors;

Answered: 1 week ago