[Solved] Out Of Bounds Expeption location (JAVA) [closed]


for (int j = 0; i < delSub.length;j++)

Should be:

for (int j = 0; j < delSub.length;j++)

(note the “j <” instead of “i <“)

2

solved Out Of Bounds Expeption location (JAVA) [closed]