Я пытаюсь получить доступ к многомерной строке за строкой в Java, но я не могу этого достичь.
У меня есть этот код, но он выводит массив столбец за столбцом:
for(int i = 0; i<array.length; i++) {
for(int j = 0; j<array[i].length; j++) {
System.out.print(array[i][j]);
}
}
Так, например, если у меня есть этот массив:
[["a", "b", "c"], ["d", "e", "f"], ["g", "h", "i"]]
Как я могу распечатать его таким образом?
adg
beh
cfi
Полный код:
import java.util.Scanner;
public class forcabruta {
public static void main (String[] args) {
Scanner keyboard = new Scanner(System.in);
char[] words = new char[] {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', ' '};
String text;
System.out.print("Enter a text to decode: ");
text = keyboard.nextLine();
char[][] combinations = new char[text.length()][words.length];
for(int i = 0; i<text.length(); i++) {
for(int j = 0; j<words.length; j++) {
if(words[j] == text.charAt(i)) {
for(int k = 1; k<words.length; k++) {
combinations[i][k] = words[Math.floorMod(j-k, 27)];
}
}
}
}
for(int i = 0; i<combinations.length; i++) {
for(int j = 0; j<combinations[i].length; j++) {
System.out.print(combinations[j][i]);
}
}
}
}