how to string[][] to int
in
Programming Questions
•
1 year ago
hey,
I want to calculate with a 2d string, how do I have tot do this??
It have to be a string[][] for me!
String[][] meh = new String[5][8];
for(int i=0; i<meh.length; i++){
meh[i]="1";
}
for(int i=0; i<meh.length; i++){
int(meh[i][1])++;
}
1