I have a 10x10 int[][], each element is a random int. For my specific purpose, I need to convert each int value into a String so I can use those values as an argument in Label(text: String). I want to be able to traverse my array and do this conversion on each iteration. Obviously this is all I can muster up for this problem:
for (int row = 0; row < matrix.length; row++) {
for (int column = 0; column < matrix[row].length; column++) {
}
}
I tried using the toString() on each index, but NetBeans wasn't liking it, because I was obviously using it incorrectly. So if someone could give me some guidance on how this process works it would be greatly appreciated. And it may go without saying, but I'm still learning.