Hallo Leute,
brauche eure Hilfe...
Ich sollte multidimensionale Arrays definieren und initialisieren. Das habe ich auch erfolgreich hinbekommen.
Jetzt sollte ich diesen Code modifizieren, indem ich Assertions einbauen soll. Die Entscheidung durch entsprechende Kommentare begründen.
Ich verstehe das aber nicht... ich weis nicht wo man soetwas einbaut.
Hoffe jemand kann mir helfen..
Grüße Laura
brauche eure Hilfe...
Ich sollte multidimensionale Arrays definieren und initialisieren. Das habe ich auch erfolgreich hinbekommen.
Jetzt sollte ich diesen Code modifizieren, indem ich Assertions einbauen soll. Die Entscheidung durch entsprechende Kommentare begründen.
Ich verstehe das aber nicht... ich weis nicht wo man soetwas einbaut.
Hoffe jemand kann mir helfen..
Grüße Laura
Code:
//a) MyMatrix1
int x = 5;
int y = 5;
int MyMatrix1 [][];
MyMatrix1 = new int [x][y];
int v = 200;
for (int i = 0; i < MyMatrix1.length; i++)
{
MyMatrix1[i][0] = 200 + (i*100);
for (int j = 1; j < MyMatrix1.length; j++)
{
MyMatrix1[i][j] = MyMatrix1[i][0] + (j*100);
}
}
//b) Diagonalensumme
int sum = 0;
int l = MyMatrix1[0].length;
for (int i = 0; i < MyMatrix1.length; i++)
{
l = l - 1;
sum = sum + MyMatrix1[i][l];
}
System.out.println ();
System.out.println ("Diagonalsumme " + sum);