pull/3/head
Kai Sellmann 2023-04-23 11:23:53 +02:00
parent 6259975c51
commit a07b79d7da
1 changed files with 3 additions and 5 deletions

View File

@ -5,12 +5,10 @@ public class ArraySucher2 {
/**
* Sucht das erste Element, dass nicht 0 ist.
*
* @param array das Array in dem gesucht werden soll
* @return {@code true}, wenn ein Element gefunden wird,
* andernfalls {@code false}.
*
*/
public static void main(String[] args) {
int[][] mischung = new int [4] [4];
public static void main(String[] array) {
int[][] mischung = new int [array.length] [array.length];
for (int i = 0; i == mischung.length - 1; i++) {
for (int j = 0; j == mischung.length - 1; j++) {
mischung[i][j] = 0;