Deklarieren Sie in einem zweidimensionalen Array zwei [] als [] [].
sample
int[][] score = {
{ 1, 2, 3, 4, 5 }, //Zeile 0
{ 10, 20, 30, 40, 50 }, //Die erste Zeile
{ 100, 200, 300, 400, 500 } //2. Zeile
};
System.out.println(score[Linie][Säule]);
System.out.println(score[0][0]); //0. Zeile, 0. Spalte
System.out.println(score[1][1]); //1. Reihe, 1. Spalte
System.out.println(score[2][3]); //2. Reihe, 3 Spalten
//Beachten Sie, dass es in Zeile 0, Spalte 0 beginnt
int[][] array = {
{1,2,3,4},
{10,20,30,40,50,60},
{1000,10000}
};
//Gibt alle im zweidimensionalen Array-Array enthaltenen ganzzahligen Elemente der Reihe nach aus
for(int i=0; i<array.length; i++) { //Sequenzname.Ermitteln Sie die Anzahl der Elemente in einer Spalte (vertikale Richtung) nach Länge
for(int s=0; s<array[i].length; s++) { //Sequenzname[i].Ermitteln Sie die Anzahl der Elemente in einer Reihe (horizontale Richtung) nach Länge
System.out.println(array[i][s]); //array[Vertikal][Seite]
}
}
Konsolenergebnisse 1 2 3 4 10 20 30 40 50 60 1000 10000
sample
int sum = 0;
for(int i=0; i<array.length; i++) {
for(int s=0; s<array[i].length; s++) {
sum += array[i][s];
}
}
System.out.println(sum);
}
Konsolenergebnisse 11220
sample
int sum = 0;
int count = 0;
for(int i=0; i<array.length; i++) {
for(int s=0; s<array[i].length; s++) {
sum += array[i][s];
count++;
}
}
System.out.println(sum/count);
}
Konsolenergebnisse 935
Recommended Posts