Solved

Write a Code Fragment to Create a Two-Dimensional 10x10 Array

Question 43

Essay

Write a code fragment to create a two-dimensional 10x10 array and initialize every element to be the value of i * j where i and j are the two indices (for instance, element [5][3] is 5 * 3 = 15).

Correct Answer:

verifed

Verified

int[ ][ ] matrix = new int[10]...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions