Project #6

Due Tuesday, October 26

 

1. Chapter 6, #13, page 229

2. Write a C# program that will input the number of rows and the number of columns of a two-dimensional array. Then initialize the i,j th element of the array to i^2 * (j-1). Print out the two-dimensional array one row at a time. The elements of each row should appear on a separate line. Finally, print out the maximum and minimum value in the two-dimensional array AND the indices of the maximum and minimum value.

3. Chapter 7, #1, page 275