Results 1 to 4 of 4
Thread: Help needed with simple program
- 12-14-2011, 03:24 PM #1
Member
- Join Date
- Dec 2011
- Posts
- 2
- Rep Power
- 0
- 12-14-2011, 03:30 PM #2
Re: Help needed with simple program
Instead of simply posting a screenshot, if you want help, you're going to want to provide an SSCCE that demonstrates the problem, and you're going to want to copy and paste the full, exact text of the error message here. I'm not trying to be mean, but I can't really see the text in that image (I refuse to admit that I need glasses). Make it easier for people to help you.
But here's a hint- What is the length of the array? What indexes does that mean it has? What index are you trying to access?How to Ask Questions the Smart Way
Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!
-
Re: Help needed with simple program
ArrayIndexOutOfBounds error means that you tried to pass an index into an array which doesn't exist.
For example, if I asked the program to give me the value for myArray[5] (index #5) but the array has only 4 items, when the program passes 5 into the array you will get this ArrayIndexOutOfBounds error.
I can see that you are using a loop where the index is set to go through <= nL or nA; I havent tested your code but my first assumption would be that you should take out the "less than or equal to" and change it to "less than" so that the array index doesnt go out of bounds.
EDIT: on second thoughts, you seem to be initializing a 2D array with [M][N] spaces... when you loop, make sure that you are looping LESS THAN those two values (M and N).Last edited by ozzyman; 12-14-2011 at 03:32 PM.
- 12-14-2011, 03:58 PM #4
Member
- Join Date
- Dec 2011
- Posts
- 2
- Rep Power
- 0
Similar Threads
-
Simple program, simple problem
By taymilll in forum New To JavaReplies: 12Last Post: 06-20-2011, 05:12 AM -
Help needed very simple java program
By pavez in forum New To JavaReplies: 3Last Post: 08-22-2009, 03:05 PM -
Simple help needed
By SaLiXeM in forum NetBeansReplies: 1Last Post: 12-12-2008, 09:13 AM -
Help Needed, simple jframe display
By typh0n in forum New To JavaReplies: 7Last Post: 10-03-2008, 01:06 AM -
Help needed writing a program...
By Francis in forum New To JavaReplies: 2Last Post: 11-22-2007, 02:03 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks