Si no se lo que es map ni list hasta hace poco no me pidas tanto
Además no se obtener variables entre distintas clases publicas
aqui esta lo que he podido conseguir con mis conocimientos
Código:
import java.util.Scanner;
public class matriz_prueba
{
public static void main (String args[])
{
Scanner escribe=new Scanner(System.in);
String sverbo;
String[][] verbo=new String[40][4];
verbo[0][0]="write";
verbo[0][1]="wrote";
verbo[0][2]="written";
verbo[0][3]="Escribir";
verbo[1][0]="cut";
verbo[1][1]="cut";
verbo[1][2]="cut";
verbo[1][3]="Cortar";
verbo[2][0]="Be";
verbo[2][1]="was/were";
verbo[2][2]="been";
verbo[2][3]="ser/estar";
System.out.println("Escribe verbo");
sverbo=escribe.next();
if (sverbo.equalsIgnoreCase("write"))
{
for (int f=0;f<=3;f++)
System.out.print(verbo[0][f]+"\t\t");
}
if (sverbo.equalsIgnoreCase("cut"))
{
for (int f=0;f<=3;f++)
System.out.print(verbo[1][f]+"\t\t");
}
if (sverbo.equalsIgnoreCase("be"))
{
for (int f=0;f<=3;f++)
System.out.print(verbo[2][f]+"\t\t");
}
}
}
No se si habria un método mejor pero lo que pides no puedo hacerlo directamente no se