J
Jacky_O
Gast
Hallo,
versuche mich gerade wiedermal an meinen Java Aufgaben, allerdings habe ich folgendes Problem.
Ich soll aus einer Datei die WErte für 2 Dreimaldrei- Matrizen auslesen und diese dann addieren.
Hier mein erster Ansatz
import java.io.DataInputStream;
import java.io.FileInputStream;
public class Matrizen {
public static void main(String[] args){
FileInputStream dateiinput;{
try {
dateiinput = new FileInputStream("MessReihen");
DataInputStream datenInStrom = new DataInputStream(dateiinput);
int [][] matrix = new int[3][3];
for(int i = 0; i < matrix.length; i++) {
for(int j = 0; j < matrix.length; j++) {
System.out.print(matrix[j]);
}
matrix = datenInStrom.readInt();
System.out.println(matrix);
}
datenInStrom.close();
} catch (Exception e){}
}
}
}
Vielen DAnk schonmal im voraus
Jacky
versuche mich gerade wiedermal an meinen Java Aufgaben, allerdings habe ich folgendes Problem.
Ich soll aus einer Datei die WErte für 2 Dreimaldrei- Matrizen auslesen und diese dann addieren.
Hier mein erster Ansatz
import java.io.DataInputStream;
import java.io.FileInputStream;
public class Matrizen {
public static void main(String[] args){
FileInputStream dateiinput;{
try {
dateiinput = new FileInputStream("MessReihen");
DataInputStream datenInStrom = new DataInputStream(dateiinput);
int [][] matrix = new int[3][3];
for(int i = 0; i < matrix.length; i++) {
for(int j = 0; j < matrix.length; j++) {
System.out.print(matrix[j]);
}
matrix = datenInStrom.readInt();
System.out.println(matrix);
}
datenInStrom.close();
} catch (Exception e){}
}
}
}
Vielen DAnk schonmal im voraus
Jacky