Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Cum inițializezi un tablou bidimensional direct cu valori?
int[][]matrix = {{1,2,3},{4,5,6}};
int[][]
matrix = {{1,2,3},{4,5,6}};
int[][]matrix = new int{{1,2,3},{4,5,6}};
matrix = new int{{1,2,3},{4,5,6}};
int[][]matrix = new int(2,3){{1,2,3},{4,5,6}};
matrix = new int(2,3){{1,2,3},{4,5,6}};
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!