Let's say I have a 2-d array of doubles of 3 rows and 5 columns named sales
double [][] sales = new double [3][5];
How do i add a value to a specific row and column, or cell? I am trying to write a program that asks user for the row number, the column number, the value to input and add that value to the cell/row and column?