Problem with 3d array

I'm trying to organize data in a 3d array that I get from a single array. The line I get looks like :

Stephanie,2,10,10,10,10,10,10,10,10,10

so I use:

String[] steph1 = inFile.readLine().split(",");

now i want to organize the data in that array into its own 3d array as follows:

int names = 1;
int levels = 1;
int scores = 9;
String[][][] steph_1 = new String[names][levels][scores];

for(int name = 0; name < names; name++)
{
for(int i = 0; i < steph_1.length; i++)
steph_1[name][0][0] = steph1;
}
for(int level = 0; level < steph_1[0].length; level++)
{
for(int i = 1; i < steph_1[0].length; i++)
steph_1[0][level][0] = steph1;
}
for(int score = 0; score < steph_1[0][0].length; score++)
{
for(int i = 2; i < steph_1[0][0].length; i++)
steph_1[0][0][score] = steph1;
}

printDiver(steph_1);

public static void printDiver(String[][][] diver)
{
for(int x = 0; x < diver.length; x++)
{
for(int y = 0; y < diver[0].length; y++)
for(int z = 0; z < diver[0][0].length; z++)
System.out.println(diver[x][y][z]);
}
}

when I print the 3d array, however, I only get back the nine 10s stored in the array, i know it has to do with my 3 for loops, but i can't figure out where the problem is. Any help or suggestions would be appreciated.
[1483 byte] By [gangle_1] at [2007-11-19 11:09:06]
# 1 Re: Problem with 3d array
Before I try to debug your code, I should let you know that a 3D array doesn't seem like an appropriate choice here. I suggest using a 1D array of a new class. This class should contain your three pieces of data: your name, level, and score.
Chris256 at 2007-11-10 2:23:04 >
# 2 Re: Problem with 3d array
hello you can find aid in http://www.developerslatam.com greetings:)
joseronal at 2007-11-10 2:24:04 >