/** * @author (Jakob Kienegger) * @version (27.04.19) */ import java.io.*; import java.util.*; public class Eingabe { private Element[][] matrix; private double multi = 1; private int n; private int m; public Eingabe() throws IOException { n = 3; m = 4; } public void einlesen(int dim_m, int dim_n) throws IOException { m = dim_m; n = dim_n; for(int i=0; i