Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Declarația corectă pentru un tablou 2×3 de tip int este:
int
int matrix[2,3] = new int();
int[2][3] matrix;
int[][] matrix = new int[2][3];
int matrix[][] = new int[3][2];
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!