id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

tlsmith2@wsfcs.k12.nc.us > array2DRowAverage
prev  |  next  |  chance

Return the average of the specified row of the 2D array nums. The rowToAverage parameter is the row that should be averaged. If the rowToAverage does not exist, return -1.0.

Important Note: Copy the following two methods into the window and don't change 
array2DRowAverage.  CodingBat does not allow 2D array parameters, so this method is accepting 
the number of rows, number of columns, and a 1D array.  The first method takes this 
information and creates a 2D array named nums that you will be using. The rowToAverage parameter 
is the row that should be averaged.  Enter your code into method array2DRowAverageB:

public double array2DRowAverage(int rows, int cols, int[] array, int rowToAverage)
{
	int[][] array2D = new int[rows][cols];
	int idx = 0;
	for (int r=0; r<rows; r++)
	{
		for (int c=0; c<cols; c++)
		{
			array2D[r][c] = array[idx];
			idx++;
		}
	}
	return array2DRowAverageB(array2D, rowToAverage);
}

public double array2DRowAverageB(int[][] nums, int rowToAverage) { 

}

array2DRowAverage(2, 4, [4, 6, 7, 8, 70, 100, 90, 80], 0) → 6.25
array2DRowAverage(4, 2, [4, 6, 7, 8, 70, 100, 90, 80], 1) → 7.5
array2DRowAverage(3, 2, [1, 2, 3, 4, 5, 6], 2) → 5.5

...Save, Compile, Run (ctrl-enter)

public double array2DRowAverage(int rows, int cols, int[] array, int rowToAverage) }

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Java Help

Misc Code Practice

Difficulty: 10 Post-solution available

Copyright Nick Parlante 2017 - privacy