G
Guest
Gast
Hallo,
wenn man 3 Arrays erstellen will station1 station2 station3, kann man dann mit die namen verändern z.B.
durch for-Schleife
bei mir klappts nicht, tip wieso ?
DANKE
wenn man 3 Arrays erstellen will station1 station2 station3, kann man dann mit die namen verändern z.B.
Code:
int [] station1 = new int[7];
int [] station2 = new int[7];
int [] station3 = new int[7];
durch for-Schleife
Code:
for(int i=1; i<4; i++){
int [] station[i] = new int station[7];
}
bei mir klappts nicht, tip wieso ?
DANKE