Merge pull request 'update' (#3) from großerPC into master

Reviewed-on: #3
pull/5/head
Kai Sellmann 2023-04-23 11:24:44 +02:00
commit c3204f5a8c
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;