Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public class IOBTester {
public static void main (String[] args) {
int [] [] array = new int [10] [10];
try {
array [10] [10] = 5;
}
catch (ArrayIndexOutOfBoundsException exception) {
System.out.println (exception);
}
}
}
public class IOBTester {
public static void main (String[] args) {
int [] array = new int [10];
int index = 10;
if (index >= 0 && index < array.length) {
array [index] = 5;
}
else {
System.out.println ("Array out of Bounds");
}
}
}
try {}catch (Exception) {}