Question: Consider the two-by-three rectangular integer array t. a) Write a statement that declares t and creates the array. b) How many rows does t have?

Consider the two-by-three rectangular integer array t.

a) Write a statement that declares t and creates the array.

b) How many rows does t have?

c) How many columns does t have?

d) How many elements does t have?

e) Write the names of all the elements in row 1 of t.

f) Write the names of all the elements in column 2 of t.

g) Write a single statement that sets the element of t in row 0 and column 1 to zero.

h) Write a sequence of statements that initializes each element of t to 1. Do not use a repetition statement.

i) Write a nested for statement that initializes each element of t to 3.

j) Write a nested for statement that inputs values for the elements of t from the user.

k) Write a sequence of statements that determines and displays the smallest value in t.

l) Write a statement that displays the elements of row 0 of t.

m) Write a statement that totals the elements of column 2 of t.

n) Write a sequence of statements that displays the contents of t in tabular format. List the column indices as headings across the top, and list the row indices at the left of each row.

Step by Step Solution

3.46 Rating (162 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

a int t new int2 3 b Two c Three d Six e t1 0 t1 1 t1 2 f t0 2 t... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Visual C How Program Questions!