hallo, kann mir jemand sagen was daran falsch ist?
static double [][] afa_1 (double anschaffungswert, double laufzeit) {
double [][] array = new double[laufzeit][4];
double afabetrag = anschaffungswert/laufzeit;
for (int jahre = 1;jahre <= laufzeit ;jahre = jahre + 1 ) {
array[jahre][0] = jahre;
array[jahre][1] = anschaffungswert;
array[jahre][2] = afabetrag;
array[jahre][3] = anschaffungswert - afabetrag;
anschaffungswert = anschaffungswert - afabetrag;
}
return array;
}
static double [][] afa_1 (double anschaffungswert, double laufzeit) {
double [][] array = new double[laufzeit][4];
double afabetrag = anschaffungswert/laufzeit;
for (int jahre = 1;jahre <= laufzeit ;jahre = jahre + 1 ) {
array[jahre][0] = jahre;
array[jahre][1] = anschaffungswert;
array[jahre][2] = afabetrag;
array[jahre][3] = anschaffungswert - afabetrag;
anschaffungswert = anschaffungswert - afabetrag;
}
return array;
}