| Author |
String arrays
|
scott morrison
Greenhorn
Joined: Dec 04, 2008
Posts: 1
|
|
need help with this bigtime, im trying to make a string array that will prompt the user for 5 names but i just cant get it working: Any help is much appreciated String[] Names; Names = new String[5]; for (int i=0; i<5; i=i+1); { Names[i] = GUI.getString("enter names"); i = i + 1; }
|
 |
Leslie Viviani
Greenhorn
Joined: Jun 18, 2008
Posts: 4
|
|
One of the most obvious problems I see is that you are incrementing your counter twice. The following is a more common format for checking the length of the array as well:
|
 |
 |
|
|
subject: String arrays
|
|
|