commit
c3204f5a8c
|
@ -5,12 +5,10 @@ public class ArraySucher2 {
|
||||||
/**
|
/**
|
||||||
* Sucht das erste Element, dass nicht 0 ist.
|
* 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) {
|
public static void main(String[] array) {
|
||||||
int[][] mischung = new int [4] [4];
|
int[][] mischung = new int [array.length] [array.length];
|
||||||
for (int i = 0; i == mischung.length - 1; i++) {
|
for (int i = 0; i == mischung.length - 1; i++) {
|
||||||
for (int j = 0; j == mischung.length - 1; j++) {
|
for (int j = 0; j == mischung.length - 1; j++) {
|
||||||
mischung[i][j] = 0;
|
mischung[i][j] = 0;
|
||||||
|
|
Loading…
Reference in New Issue