I can't figure out how to do an array of char arrays, and even worse, an array which is a "scanner" (System.in). I'll explain:
1 = A, J, S.
2 = B, K, T.
3 = C, L, U.
4 = D, M, V.
5 = E, N, W.
6 = F, O, X.
7 = G, P, Y.
8 = H, Q, Z.
9 = I, R.
I want to input a name, and receive(output) from each letter the equivalent number. But I don't know how to do it. Example:
Ericson = 5993165.
But I don't want to have an entire number, I want to each number to be a completely independent index, because I want to "calculate names".
Here's an example that I was trying without a scanner:
public static void main(String[] args) {
int[][] arrays = new int[9][3];
}
Where each index of the 9-array is a char array with 3 letters. Maybe I'm thinking in a completely wrong way.
I thank you all very much for the attention!
EDIT:
I'm experimenting something like this:
public static void main(String[] args) {
char[][][][] Array1 = {{{{1},{'A'},{'J'},{'S'}}}};
char[][][][] Array2 = {{{{2},{'B'},{'K'},{'T'}}}};
char[][][][] Array3 = {{{{3},{'C'},{'L'},{'U'}}}};
char[][][][] Array4 = {{{{4},{'D'},{'M'},{'V'}}}};
char[][][][] Array5 = {{{{5},{'E'},{'N'},{'W'}}}};
char[][][][] Array6 = {{{{6},{'F'},{'O'},{'X'}}}};
char[][][][] Array7 = {{{{7},{'G'},{'P'},{'Y'}}}};
char[][][][] Array8 = {{{{8},{'H'},{'Q'},{'Z'}}}};
char[][][] Array9 = {{{9},{'I'},{'R'}}};
System.out.println('E'+'R'+'I'+'C'+'S'+'O'+'N');
}
It's better than my earlier thoughts, but I think I'm far yet. (Again, the major problem is: This "ericson" needs to be a scanner, because the name is not a definite variable. It could be anything.)