update arraysuche2
parent
b4ba006d3f
commit
e916e0fc80
|
@ -2,13 +2,9 @@ package pr2.auffrischung.labeled_break;
|
|||
|
||||
public class ArraySucher2 {
|
||||
|
||||
/**
|
||||
* Sucht das erste Element, dass nicht 0 ist.
|
||||
*
|
||||
*
|
||||
*/
|
||||
public static void main(String[] array) {
|
||||
int[][] mischung = new int [array.length] [array.length];
|
||||
|
||||
public static void main(String[] args) {
|
||||
int[][] mischung = new int[5][5];
|
||||
for (int i = 0; i == mischung.length - 1; i++) {
|
||||
for (int j = 0; j == mischung.length - 1; j++) {
|
||||
mischung[i][j] = 0;
|
||||
|
|
Loading…
Reference in New Issue