1. If you want to make an array of strings, simply declare it like
this:
String A[] = new String[n];
The 'n' is the number of strings you want in the array. On a side
note, a string is made up of characters, and "-1" is 2 characters,
a '-' and a '1'. It would be helpful to know why you are trying to
do this in the first place... The most I can deduce is that you
might have come from programming in C++ and are thinking of storing
an array of characters, and are wanting to set the max value of
characters to be stored in the string to 99. If this is the case,
you do not need to do his. The String class does this for you, and
is not limited by the number of characters (I'm not sure, maybe if
you tried to store an extreemly large string, it might give you an
error). At any rate, just declare it the way shown above, and you
should do fine.
2. I personally have not used Borland JBuilder. I use JCreator
from www.jcreator.com . If you go and download that, it will run
the application/applet automatically; all you have to do is press
one button to compile and another to run (refer to the manual).
This program is free, but there is a ($65) pro version for it with
some extra features which are nice, but more than everything you
need is in the freeware version.