Question: I have declared a 2D int array : int [][] bingoCard = new int [5][5] and i've also declared a 2D String array : String
I have declared a 2D int array : int [][] bingoCard = new int [5][5] and i've also declared a 2D String array : String [][] bingoCard2 = new String [bingoCard.length][bingoCard.length]
I want to use a for loop to convert the 2D int array into the 2D String array called bingoCard2.
![I have declared a 2D int array : int [][] bingoCard =](https://dsd5zvtm8ll6.cloudfront.net/si.experts.images/questions/2024/09/66f31f168c2c0_23866f31f162dc55.jpg)
What's wrong in my code?
// This converts our card int array to a string array for (int i = 0; i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
