This commit is contained in:
DerTyp187
2021-11-15 12:36:00 +01:00
parent c513e8a23c
commit ff2a068964
2 changed files with 1 additions and 3 deletions

View File

@@ -35,7 +35,6 @@ public class Lieferung {
summen[i][a] = monat1[i][a] + monat2[i][a];
}
}
return summen;
}

View File

@@ -2,7 +2,6 @@ package zweidimnesionaleArrays;
import java.io.IOException;
public class Wuerfeln {
public static void main(String[] args) throws IOException {
int anzahlWuerfe = 10;
@@ -16,12 +15,12 @@ public class Wuerfeln {
}
for(int i = 0; i < anzahlExperimente; i++){
for(int a = 0; a < anzahlWuerfe; a++){
System.out.print(wuerfe[i][a] +" ");
}
System.out.print("\n");
}
}
}