Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Виберіть варіанти правильного оголошення двовимірного масиву:
int[] nums = new int[] { 0, 1, 2, 3, 4, 5 };
int[,] nums4;
int[][] nums3 = new int[3][];
int[,,] nums2 = new int[2, 3, 4];
int[,] nums1 = { { 0, 1, 2 }, { 3, 4, 5 } };
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!