#include <iostream>
using namespace std;

int main()
{
	int scores[5][3];
	int row = 0;
	int col = 0;
	int rowSum = 0;
	double ave = 0.0;

	for (row = 0; row < 5; row++)
	{
		for (col = 0; col < 3; col++)
		{
			cout << "Enter next score: ";
			//cin >> 
			scores[row][col] = rand();
		}
	}

	for (row = 0; row < 5; row++)
	{
		for (col = 0; col < 3; col++)
		{
			cout << scores[row][col] << "\t";
		}

		cout << "\n";
	}



	return 0;
}


